@mangosystem/ogc-schemas
Version:
Jsonix XML-JSON mappings for OGC Schemas.
34 lines • 1.67 kB
text/xml
<sml:PhysicalComponent gml:id="MY_SENSOR"
xmlns:sml="http://www.opengis.net/sensorml/2.0"
xmlns:swe="http://www.opengis.net/swe/2.0"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xlink="http://www.w3.org/1999/xlink"
xsi:schemaLocation="http://www.opengis.net/sensorml/2.0 http://schemas.opengis.net/sensorml/2.0/sensorML.xsd">
<!-- ================================================= -->
<!-- System Description -->
<!-- ================================================= -->
<gml:description> Static Location - Temperature sensor on my window </gml:description>
<!-- ================================================= -->
<!-- Observed Property = Output -->
<!-- ================================================= -->
<sml:outputs>
<sml:OutputList>
<sml:output name="temp">
<swe:Quantity definition="http://sweet.jpl.nasa.gov/2.2/quanTemperature.owl#Temperature">
<swe:uom code="Cel"/>
</swe:Quantity>
</sml:output>
</sml:OutputList>
</sml:outputs>
<!-- ================================================= -->
<!-- Station Location -->
<!-- ================================================= -->
<sml:position>
<!-- EPSG 4326 is for latitude-longitude, in that order -->
<gml:Point gml:id="stationLocation" srsName="http://www.opengis.net/def/crs/EPSG/0/4326">
<gml:coordinates>47.8 88.56</gml:coordinates>
</gml:Point>
</sml:position>
</sml:PhysicalComponent>