Closed mcechini closed 3 years ago
Fixing coordinate ordering issue.
Was
<EX_GeographicBoundingBox> <westBoundLongitude>-90</westBoundLongitude> <eastBoundLongitude>90</eastBoundLongitude> <southBoundLatitude>-180</southBoundLatitude> <northBoundLatitude>180</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="-180" miny="-90" maxx="180" maxy="90"/>
Should be
<EX_GeographicBoundingBox> <westBoundLongitude>-180</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>-90</southBoundLatitude> <northBoundLatitude>90</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="-90" miny="-180" maxx="90" maxy="180"/>
Fixing coordinate ordering issue.
Was
Should be