Map Vocabulary

This version:
http://downlode.org/Code/RDF/Map/spec-2008-06-15.html
Latest version:
http://downlode.org/Code/RDF/Map/ (RDF)
Author:
Earle Martin

Copyright © 2008 Earle Martin.

Creative Commons License This work is licensed under a Creative Commons License. This copyright applies to the File Properties Vocabulary documentation and does not apply to the File Properties Vocabulary data formats, vocabulary terms, or technology. Regarding underlying technology, the File Properties Vocabulary relies heavily on the W3C's RDF technology, an open Web standard that can be freely used by anyone.


Abstract

This document describes a simple RDF vocabulary for describing the relationship between things and maps of those things. It is designed to integrate smoothly with the GeoRSS vocabulary and the forthcoming W3C Geospatial Vocabulary.

Following is a brief example, showing a map describing the Leytonstone area of London. (Leytonstone itself is identified using a Geonames URI.)

<rdf:RDF
  xmlns:geonames = "http://www.geonames.org/ontology#"
  xmlns:georss   = "http://www.georss.org/georss/"
  xmlns:map      = "http://downlode.org/Code/RDF/Map/"
  xmlns:rdf      = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs     = "http://www.w3.org/2000/01/rdf-schema#"
>

<map:Map rdf:about="http://mt2.google.com/mt?x=16384&amp;y=10887&amp;zoom=2">
  <map:shows>
    <geonames:Feature rdf:about="http://sws.geonames.org/6692921/">
      <rdfs:label>Leytonstone, London, UK</rdfs:label>
    </geonames:Feature>
  </map:shows>
  
  <map:covers rdf:parseType="Resource">
    <georss:box>51.5630 0.0000 51.5702 0.0115</georss:box>
  </map:covers>
</map:Map>

</rdf:RDF>

Here is a differently-oriented example, relating an RDF resource to a map.

<rdf:RDF
  xmlns:geonames = "http://www.geonames.org/ontology#"
  xmlns:map      = "http://downlode.org/Code/RDF/Map/"
  xmlns:rdf      = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs     = "http://www.w3.org/2000/01/rdf-schema#"
>

<geonames:Feature rdf:about="http://sws.geonames.org/6692921/">
  <rdfs:label>Leytonstone, London, UK</rdfs:label>

  <map:shownBy>
    <map:Map rdf:about="http://mt2.google.com/mt?x=16384&amp;y=10887&amp;zoom=2" />
  </map:shownBy>
</geonames:Feature>

</rdf:RDF>

Classes in this vocabulary

Name Description Type/sub-class of
map:Map A map. Map is an frbr:Expression and sub-class of foaf:Image.

Properties in this vocabulary

Name Domain Range Description Sub-property of
map:shows map:Map rdfs:Resource What the map shows; perhaps a geo:SpatialThing. skos:subject
map:covers map:Map rdfs:Resource The area that the map covers. skos:subject
map:isShownBy rdfs:Resource map:Map Property linking a resource to a map that shows it. skos:isSubjectOf

Acknowledgements

Parts of the layout of this document and the licensing information were adapted from the FOAF Vocabulary Specification by Dan Brickley and Libby Miller.


Valid CSS Valid XHTML 1.0 Strict