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
CSV output is structured like:
{ "status": "200 OK", "results": "*STRING OF CSV CONTENT*" }
geojson output is structured like:
{ "status": "200 OK", "results": { "status": "200 OK", "time": "219.917 ms.", "type": "FeatureCollection", "features": [{*GEOJSON FEATURE OBJECT*}], "hits": 3 } }
The structure of the output should be the same for both format types. I would suggest something like
{ "status": "200 OK", "time": "219.917 ms.", "hits": 3 "results": { "csv": "*CSV FORMATTED DATA IF CSV REQUESTED, EMPTY STRING OTHERWISE*", "geojson": *DATA AS GEOJSON FEATURECOLLECITON IF GEOJSON REQUESTED, EMPTY OBJECT OTHERWISE* } }
The text was updated successfully, but these errors were encountered:
vggonzal
Successfully merging a pull request may close this issue.
CSV output is structured like:
geojson output is structured like:
The structure of the output should be the same for both format types. I would suggest something like
The text was updated successfully, but these errors were encountered: