A two dimentional grid coordinate representation in the form of a number representing the x coordinate, a colon, then a number representing the y coordinate. |
The origin (0,0) and granularity may be determined by the distributor. |
<xs:simpleType name="gridType"> <xs:annotation> <xs:documentation>A two dimentional grid coordinate representation in the form of a number representing the x coordinate, a colon, then a number representing the y coordinate.</xs:documentation> <xs:documentation>The origin (0,0) and granularity may be determined by the distributor.</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[-]?\d+(\.\d{1,2})?,[-]?\d+(\.\d{1,2})?"/> </xs:restriction> </xs:simpleType> |