namespace | http://www.TCIP-Adopted-03-00-01 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="TSP-IntersectionPath"> <xs:annotation> <xs:appinfo> straight thru (1) -- approximately 0 degree turn right turn (2) -- approximately +90 degree turn left turn (3) -- approximately -90 degree turn u turn (4) -- approximately 180 degree turn diag right turn (5) -- approximately +45 degree turn diag left turn (6) -- approximately -45 degree turn sharp right turn (7) -- approximately +135 degree turn sharp left turn (8) -- approximately -135 degree turn </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="8"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="straight thru"/> <xs:enumeration value="right turn"/> <xs:enumeration value="left turn"/> <xs:enumeration value="u turn"/> <xs:enumeration value="diag right turn"/> <xs:enumeration value="diag left turn"/> <xs:enumeration value="sharp right turn"/> <xs:enumeration value="sharp left turn"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |