Class <<DataType>> CGI_Range (extends CGI_Value )
Allows specifying a range consisting of both terms and numeric values (eg Silurian to 359.2+-2.5Ma) by specifying an upper and lower CGI_TermValue or 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_PrimitiveValue | 1 | CGI_Range | The lower value | ||||||
|
||||||||||
| upper | CGI_PrimitiveValue | 1 | CGI_Range | 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_Range" substitutionGroup="gsml:CGI_Value" type="gsml:CGI_RangeType">
<xs:annotation>
<xs:documentation>Allows specifying a range consisting of both terms and numeric values (eg Silurian to 359.2+-2.5Ma) by specifying an upper and lower CGI_TermValue or CGI_NumericValue</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="CGI_RangeType">
<xs:complexContent>
<xs:extension base="gsml:CGI_ValueType">
<xs:sequence>
<xs:element name="lower" type="gsml:CGI_PrimitiveValuePropertyType"/>
<xs:element name="upper" type="gsml:CGI_PrimitiveValuePropertyType"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="CGI_RangePropertyType">
<xs:sequence>
<xs:element ref="gsml:CGI_Range"/>
</xs:sequence>
</xs:complexType>
|