nasa-gibs / onearth

High-performance web services for tiled raster imagery and vector tiles
Apache License 2.0
178 stars 47 forks source link

WMS Extent Coordinate Ordering Issue #157

Closed mcechini closed 3 years ago

mcechini commented 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"/>