Defines terms for describing key metadata about airports such as location, lat/long, elevation and IATA/ICAO codes.
Below is an example which describes the nearest airport to a person called Libby Miller. It links to the person's workplace's homepage and their project homepage, and an interest - the Semantic Web. It uses the foaf (friend of a friend) namespace among others. Using nearestAirport is a simple way of identifying a person's locality without being too specific. more...
<rdf:RDF
xmlns:contact="http://www.w3.org/2000/10/swap/pim/contact#"
xmlns:airport="http://www.daml.org/2001/10/html/airport-ont#"
xmlns:pos='http://www.w3.org/2003/01/geo/wgs84_pos#'
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:wordnet="http://xmlns.com/wordnet/1.6/"
>
<foaf:Person>
<foaf:name>Libby Miller</foaf:name>
<foaf:workplaceHomepage rdf:resource="http://www.ilrt.bristol.ac.uk"/>
<foaf:projectHomepage rdf:resource="http://www.w3.org/2001/sw/Europe/"/>
<foaf:interest rdf:resource="http://www.w3.org/2001/sw/" />
<contact:nearestAirport>
<airport:Airport rdf:about='http://www.daml.org/cgi-bin/airport?BRS'>
<airport:iataCode>BRS</airport:iataCode>
<airport:icaoCode>EGGD</airport:icaoCode>
<pos:lat>51.383333333333</pos:lat>
<pos:long>-2.7166666666667</pos:long>
</airport:Airport>
</contact:nearestAirport>
</foaf:Person>
</rdf:RDF>