<?xml version="1.0" encoding="Windows-1252"?>
<xs:schema xmlns:i="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="WeatherReport">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="organization-information">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="organization-id" type="xs:string" />
              <xs:element name="organization-name" type="xs:string" />
              <xs:element name="last-update-time" type="xs:dateTime" />
            </xs:sequence>
          </xs:complexType>
        </xs:element>
        <xs:element name="WeatherStations">
          <xs:complexType>
            <xs:sequence>
              <xs:element maxOccurs="unbounded" name="WeatherStation">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element name="station-id" type="xs:unsignedInt" />
                    <xs:element name="RoadWeather">
                      <xs:complexType>
                        <xs:sequence>
                          <xs:element minOccurs="0" name="air-temperature" type="xs:short" />
                          <xs:element minOccurs="0" name="atmospheric-pressure" type="xs:unsignedShort" />
                          <xs:element minOccurs="0" name="avg-wind-direction" type="xs:unsignedShort" />
                          <xs:element minOccurs="0" name="avg-wind-gust-direction" type="xs:unsignedShort" />
                          <xs:element minOccurs="0" name="avg-wind-gust-speed" type="xs:unsignedByte" />
                          <xs:element minOccurs="0" name="avg-wind-speed" type="xs:unsignedByte" />
                          <xs:element minOccurs="0" name="dewpoint-temp" type="xs:short" />
                          <xs:element name="last-update-time" type="xs:dateTime" />
                          <xs:element minOccurs="0" name="max-temp" type="xs:unsignedShort" />
                          <xs:element minOccurs="0" name="min-temp" type="xs:short" />
                          <xs:element minOccurs="0" name="precip-intensity" type="xs:string" />
                          <xs:element minOccurs="0" name="precip-rate" type="xs:short" />
                          <xs:element minOccurs="0" name="precip-type" type="xs:string" />
                          <xs:element minOccurs="0" name="relative-humidity" type="xs:unsignedByte" />
                          <xs:element minOccurs="0" name="visibility" type="xs:short" />
                        </xs:sequence>
                      </xs:complexType>
                    </xs:element>
                    <xs:element name="SurfaceCondition">
                      <xs:complexType>
                        <xs:sequence>
                          <xs:element minOccurs="0" name="ice-thickness" type="xs:unsignedShort" />
                          <xs:element minOccurs="0" name="mobile-friction" type="xs:unsignedByte" />
                          <xs:element minOccurs="0" name="surface-freeze-point" type="xs:unsignedShort" />
                          <xs:element minOccurs="0" name="surface-salinity" type="xs:int" />
                          <xs:element name="surface-temperatures">
                            <xs:complexType>
                              <xs:sequence minOccurs="0">
                                <xs:element maxOccurs="unbounded" name="Sensor">
                                  <xs:complexType>
                                    <xs:sequence>
                                      <xs:element name="sensor-id" type="xs:unsignedByte" />
                                      <xs:element name="surface-temperature" type="xs:short" />
                                    </xs:sequence>
                                  </xs:complexType>
                                </xs:element>
                              </xs:sequence>
                            </xs:complexType>
                          </xs:element>
                          <xs:element minOccurs="0" name="surface-water-depth" type="xs:unsignedInt" />
                          <xs:element minOccurs="0" name="water-depth" type="xs:short" />
                        </xs:sequence>
                      </xs:complexType>
                    </xs:element>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>