Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

g.proj: Add JSON support #5419

Merged
merged 3 commits into from
Apr 1, 2025
Merged

Conversation

NishantBansal2003
Copy link
Contributor

@NishantBansal2003 NishantBansal2003 commented Mar 20, 2025

ref: #4104

This pull request integrates to add JSON output support to the g.proj module. With these changes, g.proj now supports output in JSON format when invoked with the -p flag.

The behaviour is as follows:

{
    "name": "Lambert Conformal Conic",
    "proj": "lcc",
    "datum": "nad83",
    "a": "6378137.0",
    "es": "0.006694380022900787",
    "lat_1": "36.16666666666666",
    "lat_2": "34.33333333333334",
    "lat_0": "33.75",
    "lon_0": "-79",
    "x_0": "609601.22",
    "y_0": "0",
    "no_defs": "defined",
    "unit": "Meter",
    "units": "Meters",
    "meters": "1"
}

NOTES: The code changes are largely based on the modifications introduced in #4104 with additional tweaks to address all review comments.

Signed-off-by: Nishant Bansal <[email protected]>
@github-actions github-actions bot added Python Related code is in Python C Related code is in C module docs markdown Related to markdown, markdown files general tests Related to Test Suite CMake labels Mar 20, 2025
@NishantBansal2003
Copy link
Contributor Author

Could we re-run this CI? The error does not seem to be related.

Errors in:
/d/a/grass/grass/lib/db/dbmi_driver
/d/a/grass/grass/db/drivers/sqlite
/d/a/grass/grass/db/drivers/postgres
/d/a/grass/grass/db/drivers/dbf
/d/a/grass/grass/db/drivers/ogr
/d/a/grass/grass/db/drivers/odbc

@NishantBansal2003
Copy link
Contributor Author

@petrasovaa, Could you please review this PR when you have a moment? pinging in case it was missed.

@petrasovaa
Copy link
Contributor

After discussing this with @wenzeslaus, we suggest adding the WKT (-w), proj4 (-j) and shell (-g) into the format option:
options: plain,shell,json,wkt,proj4
The -p flag would stay, but would just mean "Print projection information".
The flags would need to keep working for backwards compatibility, but should print a warning to use the format option instead.

Sorry for more changes again, but I think this will make more sense.

@NishantBansal2003
Copy link
Contributor Author

we suggest adding the WKT (-w), proj4 (-j) and shell (-g) into the format option:
options: plain,shell,json,wkt,proj4

Should I remove the JSON format for the -w and -j flags, or should I use format->multiple = YES to provide multiple outputs, such as WKT and JSON or PROJ4 and JSON?

The -p flag would stay, but would just mean "Print projection information".

Should format=plain,shell,json be used with the -p flag, or should they be used independently?

@petrasovaa
Copy link
Contributor

we suggest adding the WKT (-w), proj4 (-j) and shell (-g) into the format option:
options: plain,shell,json,wkt,proj4

Should I remove the JSON format for the -w and -j flags, or should I use format->multiple = YES to provide multiple outputs, such as WKT and JSON or PROJ4 and JSON?

Good questions. I meant removing the JSON. I wouldn't do multiple outputs.

The -p flag would stay, but would just mean "Print projection information".

Should format=plain,shell,json be used with the -p flag, or should they be used independently?

Without -p there should be no printing, so e.g. g.proj format=json would probably fail with "at least one of the options... need to be specified". (The other flags will still work for backward compatibility). Hope this makes sense.

Signed-off-by: Nishant Bansal <[email protected]>
Copy link
Contributor

@petrasovaa petrasovaa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just some small suggestions, looks great!

Signed-off-by: Nishant Bansal <[email protected]>
@petrasovaa petrasovaa merged commit f911b9e into OSGeo:main Apr 1, 2025
29 checks passed
@github-actions github-actions bot added this to the 8.5.0 milestone Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C Related code is in C CMake docs general markdown Related to markdown, markdown files module Python Related code is in Python tests Related to Test Suite
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants