Rick Blair validated the three SOS responses from my adaptation of
oostethys_sos.cgi (I haven't edited the XML templates or any code that
creates the responses). He only found this small issue (below).
-Emilio
(From Rick):
Found one slight problem. The eventTime tag does not validate.
sos:eventTime should be sos:time
The following needs to be changed from:
<sos:eventTime>
<gml:TimePeriod gml:id="uw.hccm.cruises.ship_valid_times">
<gml:beginPosition
indeterminatePosition="unknown">2008-10-01T00:00:00Z</gml:beginPosition>
<gml:endPosition indeterminatePosition="now"/>
<gml:timeInterval unit="hour">.5</gml:timeInterval>
</gml:TimePeriod>
</sos:eventTime>
To
<sos:time>
<gml:TimePeriod gml:id="uw.hccm.cruises.ship_valid_times">
<gml:beginPosition
indeterminatePosition="unknown">2008-10-01T00:00:00Z</gml:beginPosition>
<gml:endPosition indeterminatePosition="now"/>
<gml:timeInterval unit="hour">.5</gml:timeInterval>
</gml:TimePeriod>
</sos:time>