<?xml version="1.0" encoding="UTF-8"?>
<!-- File: cambridge.xml -->
<CityModel xmlns="http://www.opengis.net/examples" 
           xmlns:gml="http://www.opengis.net/gml" 
           xmlns:xlink="http://www.w3.org/1999/xlink" 
           xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" 
           xsi:schemaLocation="http://www.opengis.net/examples city.xsd">

  <gml:name>Cambridge</gml:name>
  <gml:boundedBy>
    <gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
      <gml:coordinates>0.0,0.0</gml:coordinates>
      <gml:coordinates>100.0,100.0</gml:coordinates>
    </gml:Box>
  </gml:boundedBy>

  <cityMember>
    <River>
      <gml:description>The river that runs through Cambridge.</gml:description>
      <gml:name>Cam</gml:name>
      <gml:centerLineOf>
        <gml:LineString srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
          <gml:coordinates>0,50</gml:coordinates>
          <gml:coordinates>70,60</gml:coordinates>
          <gml:coordinates>100,50</gml:coordinates>
        </gml:LineString>
      </gml:centerLineOf>
    </River>
  </cityMember>

  <cityMember>
    <Road>
      <gml:name>M11</gml:name>
        <linearGeometry>
          <gml:LineString srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
          <gml:coordinates>0,5.0</gml:coordinates>
          <gml:coordinates>20.6,10.7</gml:coordinates>
          <gml:coordinates>80.5,60.9</gml:coordinates>
          </gml:LineString>
        </linearGeometry>
      <classification>motorway</classification>
      <number>11</number>
    </Road>
  </cityMember>

  <cityMember xlink:type="simple" xlink:title="Trinity Lane" 
    xlink:href="http://www.foo.net/cgi-bin/wfs?FeatureID=C10239" 
    gml:remoteSchema="city.xsd#xpointer(//complexType[@name='RoadType'])"/>

  <!-- a mountain doesn't belong here! Uncomment this cityMember and see 
       the parser complain!
  <cityMember>
    <Mountain>
      <gml:description>World's highest mountain is in Nepal!</gml:description>
      <gml:name>Everest</gml:name>
      <elevation>8850</elevation>
    </Mountain>
  </cityMember>
  -->

  <dateCreated>2000-11</dateCreated>
</CityModel>
