RDF / RSS 1GeoRSS in RDFRDF: a quick introductionThis material is preliminary and only for discussion at this time. The RDF data model is so simple that it can be explained in a few paragraphs. RDF encodes information using statements of the form
the Object http://en.wikipedia.org/wiki/Astoria_Oregon has
the Property http://www.georss.org/georss/point with value
"46.183 -123.816".
This statement means that the geographical location associated
A unit of RDF content (eg an RDF page) is nothing more than a set of such statements.
This simple data model has several serializations - several representations as linear
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:georss="http://www.georss.org/georss/">
<rdf:Description rdf:about="http://en.wikipedia.org/wiki/Astoria_Oregon">
<dc:title>Astoria, Oregon</dc:title>
<georss:point>46.183 -123.816</georss:point>
</rdf:Description>
</rdf:RDF>
For more information about RDF, see the RDF pages at W3C. Simple GeoRSS in RDF and RSS 1.0
In the RDF framework, the content and meaning of Simple is "lat,long"
These properties can be used in any RDF context to make simple geographical assertions RSS 1.0. However, there is nothing
<rdf:RDF
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
xmlns:dc='http://purl.org/dc/elements/1.1/'
xmlns='http://purl.org/rss/1.0/'
xmlns:georss="http://www.georss.org/georss/">
<channel rdf:about='http://www.xml.com/'>
<title>XML.com</title>
<link>http://www.xml.com/</link>
<description>XML.com Articles and Weblogs</description>
<dc:rights>Copyright 2005, O'Reilly Media, Inc.</dc:rights>
<items>
<rdf:Seq>
<rdf:li rdf:resource=
'http://www.oreillynet.com/pub/wlg/8466?CMP=OTC-TY3388567169' />
</rdf:Seq>
</items>
</channel>
<item rdf:about=
'http://www.oreillynet.com/pub/wlg/8466?CMP=OTC-TY3388567169'>
<title>Live Coverage XML 2005 (Tuesday Keynotes)</title>
<link>http://www.oreillynet.com/pub/wlg/8466?CMP=OTC-TY3388567169</link>
<description>
<![CDATA[A live look at the XML Keynotes and seminal talks.]]>
</description>
<dc:creator>Kurt Cagle</dc:creator>
<dc:date>2005-11-15T07:45:58-08:00</dc:date>
<georss:point> 46.183 -123.816</georss:point>
</item>
</rdf:RDF>
|
SearchGeoRSS BlogGeoRSS Del.icio.us links
User login |