[eml-dev] [Bug 3500] New: - restrict GeographicCoverage/boundingCoordinates to lat and lon ranges

bugzilla-daemon at ecoinformatics.org bugzilla-daemon at ecoinformatics.org
Tue Sep 30 14:46:09 PDT 2008


http://bugzilla.ecoinformatics.org/show_bug.cgi?id=3500

           Summary: restrict GeographicCoverage/boundingCoordinates to lat
                    and lon ranges
           Product: EML
           Version: 2.0.1
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: eml - general bugs
        AssignedTo: jones at nceas.ucsb.edu
        ReportedBy: mob at icess.ucsb.edu
         QAContact: eml-dev at ecoinformatics.org


Currently, the boundingCoordinates in the GeographicCoverage Type (e.g.,
westBoundingCoordinate, etc) are of type xs:string. The content of these
elements should be restricted to reasonable latitude and longitude values,
e.g.,
lons: -180<x<180 and lats -90<x<90, inclusive.

<appinfo> should be updated as appropriate.

<xs:element name="westBoundingCoordinate" type="xs:decimal">
 <xs:simpleType> 
  <xs:restriction base="xs:decimal">
   <xs:minInclusive value="-180"/>
   <xs:maxInclusive value="180"/>
  </xs:restriction>
 </xs:simpleType> 
</element>


More information about the Eml-dev mailing list