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
I think there's a coordinate order error in one of the examples
<wfs:Spatial crs="http://www.opengis.net/def/crs/OGC/1.3/CRS84"> <wfs:LowerCorner>-54.9311103820801 -179.878326416016</wfs:LowerCorner> <wfs:UpperCorner>79.52944183349609 179.339859008789</wfs:UpperCorner> </wfs:Spatial>
should (maybe) be:
<wfs:Spatial crs="http://www.opengis.net/def/crs/OGC/1.3/CRS84"> <wfs:LowerCorner>-179.878326416016 -54.9311103820801</wfs:LowerCorner> <wfs:UpperCorner>179.339859008789 79.52944183349609</wfs:UpperCorner> </wfs:Spatial>
The text was updated successfully, but these errors were encountered:
Oops, indeed. I will fix that.
Thanks!
Sorry, something went wrong.
fix axis order in feature collection example
208babf
resolves #113
Doh! My bad ... I hand crafted those examples and I always mess that up!
Successfully merging a pull request may close this issue.
I think there's a coordinate order error in one of the examples
<wfs:Spatial crs="http://www.opengis.net/def/crs/OGC/1.3/CRS84"> <wfs:LowerCorner>-54.9311103820801 -179.878326416016</wfs:LowerCorner> <wfs:UpperCorner>79.52944183349609 179.339859008789</wfs:UpperCorner> </wfs:Spatial>
should (maybe) be:
<wfs:Spatial crs="http://www.opengis.net/def/crs/OGC/1.3/CRS84"> <wfs:LowerCorner>-179.878326416016 -54.9311103820801</wfs:LowerCorner> <wfs:UpperCorner>179.339859008789 79.52944183349609</wfs:UpperCorner> </wfs:Spatial>
The text was updated successfully, but these errors were encountered: