The PEF location element has subelements corresponding to the structure of an Epicentre location datatype. These include a reference to a coordinate_system, an optional reference to a vertex, and a list of coordinates.
This datatype was developed to support the Epicentre location data types. It is intended as a direct mapping from Epicentre to an XML file. The OGC is developing its GML with industry standard ways for giving locations. It is expected that applications outside of Epicentre mappings will use the GML methodology.
<xsd:element name="location" type="simplelocation"/>
<element name="data_value">
<complexType>
<sequence>
<element ref="pef:location"/>
</sequence>
</complexType>
</element>
The example will show namespace of 'pef'
<data_value>
<pef:location>
<pef:coordinate_system-ref refTo="#NAD27"/>
<pef:coordinate unit="#dega">30.279553</pef:coordinate>
<pef:coordinate unit="#dega">-98.199500</pef:coordinate>
</pef:location>
</data_value>