We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the solution you'd like Add an option for format, such as format=plain for the current output format and format=json for the JSON output.
format=plain
format=json
A possible JSON layout could be:
[ { "values": "0.996534-8.677654" }, { "values": "8.677654-16.358774" }, { "values": "16.358774-24.040000" } ]
Describe alternatives you've considered Alternatively(helpful for numerical operations or parsing), the JSON layout could look like this:
[ { "min": "0.996534", "max": "8.677654" }, { "min": "8.677654", "max": "16.358774" }, { "min": "16.358774", "max": "24.040000" } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add JSON output for easy parsing of r.describe output.
Describe the solution you'd like
Add an option for format, such as
format=plain
for the current output format andformat=json
for the JSON output.A possible JSON layout could be:
Describe alternatives you've considered
Alternatively(helpful for numerical operations or parsing), the JSON layout could look like this:
The text was updated successfully, but these errors were encountered: