nc:Degree180PlusMinusSimpleType
simpleType Degree180PlusMinusSimpleType in namespace http://release.niem.gov/niem/niem-core/4.0/
Definition
A data type for an angle measured in degrees between -180 and 180.
Diagram
XML Schema
<xs:simpleType name="Degree180PlusMinusSimpleType">
<xs:annotation>
<xs:documentation>
A data type for an angle measured in degrees between -180 and 180.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:maxInclusive value="180">
<xs:annotation>
<xs:documentation>
less than or equal to 180</xs:documentation>
</xs:annotation>
</xs:maxInclusive>
<xs:minExclusive value="-180">
<xs:annotation>
<xs:documentation>
greater than -180</xs:documentation>
</xs:annotation>
</xs:minExclusive>
</xs:restriction>
</xs:simpleType>