Kriti Birda
Kriti Birda
As a part of https://github.com/OSGeo/grass/discussions/3019, JSON format support will be added to multiple modules. By default, modules output in existing plain format. If the format=json option is provided, modules will...
Use parson to add json output format support to the r.profile module. The output format is as follows: ```json [ { "easting": , "northing": , "distance": , "elevation": , "red":...
Using parson, add JSON support to v.distance module. The output looks like as follows: ```json [ { "from_cat": 1, "to_cat": 33, "distances": [ { "value": 54371.188688694157, "name": "dist" }, {...
Using parson, add JSON support to g.region module. The output looks like as follows: ```json { "projection": 99, "zone": 0, "region": { "north": 228500, "south": 215000, "west": 630000, "east": 645000,...
Using parson, add JSON output support to r.stats module. For cell stats, the output looks like: ```json [ { "labels": [ { "value": 1, "label": "CARY", "name": "towns" }, {...
Using parson, add JSON output support to r.report module. Sample JSON output is according to the discussion in https://github.com/OSGeo/grass/pull/3033, example: ```json { "location": "nc_spm_08_grass7", "created": "Fri Jun 28 18:41:29 2024",...
Use parson to add json output format support to the v.univar module. Expected JSON schema: Root is a JSON object. The percentile option allows the user to request specific percentile...
Use parson to add json output format support to the r.univar module. Expected JSON schema: At the root is an array, each element of which has the stats for a...
Add JSON output support to v.to.db module. The output looks like as follows: ```json { "totals": { "area": 2219442027.2203522 }, "records": [ { "category": 1, "area": 24375323.127803534 }, { "category":...
Use parson to add JSON support to g.proj. Currently, only works with the -p flag. ```json { "name": "Lambert Conformal Conic", "proj": "lcc", "datum": "nad83", "a": "6378137.0", "es": "0.006694380022900787", "lat_1":...