<?xml version="1.0" encoding="UTF-8"?>

<!-- an example from Ron Lake, RDFized by Dan Brickley for SWIG discussions -->
<!-- $Id -->

<MyObjectCollection 	xmlns="http://www.commonobjects.example.org/gmlrss"
			xmlns:gml="http://www.opengis.net/gml"
			xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 	
			xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
			xsi:schemaLocation="http://www.commonobjects.example.org/gmlrss/CommonObjectFramework.xsd">

 <members rdf:parseType="Collection"><!--  we could 'stripe' members around each feature
					listed. this outer entity seems to be purely
					a grouping construct, so i've used pt=C instead
					which is concise in XML, but linked-listy in
					the resulting RDF. 
				 	the xsi:schemaLocation attribute if left in
				       	will show up as an RDF property. Also I've
				       	changed commonobjects.org into commonobjects.example.org
					Added the rdf namespace so rdf:parseType could have
					its namespace prefix (optional; but we'll likely use
					the rdf ns elsewhere in the doc anyhow, later  -->
  <Railway>			  <!-- everything from here on in is the same -->
  <gml:name>Track 29</gml:name>
  <centerLine>
    <gml:LineString>
      <gml:pos>100 200</gml:pos>
      <gml:pos>200 300</gml:pos>
    </gml:LineString>
   </centerLine>
 </Railway>
<Bridge>
  <centerLine>
    <gml:LineString>
    <gml:pos>400 400</gml:pos>
    <gml:pos>500 500</gml:pos>
  </gml:LineString>
  </centerLine>
  <type>suspension</type>
</Bridge>
<Railway>
  <centerLine>
  <gml:LineString>
    <gml:pos>200 300</gml:pos>
    <gml:pos>400 400</gml:pos>
  </gml:LineString>
</centerLine>
</Railway>
<Road>
  <centerLine>
    <gml:LineString>
      <gml:pos>500 500</gml:pos>
      <gml:pos>700 700</gml:pos>
    </gml:LineString>
  </centerLine>
  <numLanes>3</numLanes>
</Road>
<Monument>
  <position>
    <gml:Point>
    <gml:pos>100 150</gml:pos>
</gml:Point>
</position>
</Monument>

	<Road>

	<centerLine>

	<gml:LineString>
<gml:pos>100 200</gml:pos>
<gml:pos>300 300</gml:pos>
</gml:LineString>
</centerLine>
<numLanes>2</numLanes>
</Road>
</members>
</MyObjectCollection>
