Class <<DataType>> CGI_NumericRange (extends CGI_Value )
Allows specifying a range of numeric values (eg 443.7+-1.5 to 359+-2.5) by specifying an upper and lower CGI_NumericValue
Local Subclasses: (none)Attributes
| Name | Type | Bounds | From Class | Notes | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| qualifier | ValueQualifierCode | 0..1 | CGI_Value | term that qualifies the specified value. Examples include (greaterThan (>), lessThan, equalTo, approximate) commonly used with numeric values, and (never sometimes, common, always) used with term values. Arithmetic terms (arithmetic mean, geometric mean, mode, median) added for GeoSciML2. |
||||||
|
||||||||||
Outbound Associations
| Name | Type | Multiplicity | From Class | Notes | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| lower | CGI_NumericValue | 1 | CGI_NumericRange | The lower value | ||||||
|
||||||||||
| upper | CGI_NumericValue | 1 | CGI_NumericRange | The upper value | ||||||
|
||||||||||
Constraints
| Constraint | Type | Status | Weight |
|---|
Tagged values
| Tag | Value | Notes |
|---|---|---|
| byValuePropertyType | true | Values: true,false Default: false Description: enforce the 'by value' property pattern without xl |
| hasXmlLang | false | Values: true | false Default: false Description: axml attribute xml:lang shall be generated for the type representing the class |
| isCollection | false | Values: true,false Default: false Description: attribute group gml:AggregationAttributeGroup is a |
| noPropertyType | false | Values: true,false Default: false Description: suppress automatic creation of *PropertyType compl |
GML-conformant XML Implementation Details
<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="CGI_NumericRange" substitutionGroup="gsml:CGI_Value" type="gsml:CGI_NumericRangeType">
<xs:annotation>
<xs:documentation>Allows specifying a range of numeric values (eg 443.7+-1.5 to 359+-2.5) by specifying an upper and lower CGI_NumericValue</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="CGI_NumericRangeType">
<xs:complexContent>
<xs:extension base="gsml:CGI_ValueType">
<xs:sequence>
<xs:element name="lower" type="gsml:CGI_NumericValuePropertyType"/>
<xs:element name="upper" type="gsml:CGI_NumericValuePropertyType"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="CGI_NumericRangePropertyType">
<xs:sequence>
<xs:element ref="gsml:CGI_NumericRange"/>
</xs:sequence>
</xs:complexType>
|