|
With some projected coordinate systems Geoserver creates BoundedBy elements of the DescribeFeatureType by using a wrong axis order. For example the nurc__Pk50095 demo coverage:
http://localhost:8080/geoserver/ows?service=WCS&version=2.0.1&request=describecoverage&coverageid=nurc__Pk50095
<gml:Envelope srsName="http: axisLabels="E N" uomLabels="m m" srsDimension="2"><gml:lowerCorner>5176214.082539256 347649.93086859107</gml:lowerCorner><gml:upperCorner>5196961.352859256 370725.976428591</gml:upperCorner></gml:Envelope>
I made a test also with EPSG:3067 which is a UTM projection with E-N axis order:
<gml:Envelope srsName="http: axisLabels="E N" uomLabels="m m" srsDimension="2"><gml:lowerCorner>6696000.0 458000.0</gml:lowerCorner><gml:upperCorner>6702000.0 464000.0</gml:upperCorner></gml:Envelope>
In both cases first coordinates are northings even they should be eastings.
|