# $Id: dataPool.n3,v 1.1 2006/01/19 17:21:29 andy_seaborne Exp $ # See DOCUMENT INFO below. # NAMESPACES @prefix r: . @prefix rdfs: . @prefix owl: . @prefix dc: . @prefix vcard: . @prefix ical: . @prefix wgs: . @prefix loc: . @prefix time: . @prefix air: . # DOCUMENT INFO <> rdfs:comment "Some inspiration from http://www.w3.org/2003/01/geo/" ; owl:versionInfo "$Id: dataPool.n3,v 1.1 2006/01/19 17:21:29 andy_seaborne Exp $". # DOCUMENT dc:source . r:type air:Airport ; time:timezone [ ical:tzid "America/Chicago" ] ; air:location "Austin, TX" ; air:name "Austin Bergstrom International" ; loc:location [ r:type loc:geodetic ; wgs:lat "30.3" ; wgs:long "-97.7" ] ; loc:location [ r:type loc:EarthCenteredEarthFixed ; loc:ECEF_X "-7420507.1" ; loc:ECEF_Y "-5462738.5" ] ; vcard:country "US" . dc:source . r:type air:Airport ; air:location "Tokyo" ; air:name "Tokyo" ; loc:location [ r:type loc:geodetic ; wgs:lat "35.766666666667" ; wgs:long "140.31666666667" ]; vcard:country "JP" . dc:source . r:type air:Airport ; time:timezone [ ical:tzid "Europe/Paris" ] ; air:location "Paris" ; air:name "Orly" ; wgs:lat "48.716666666667" ; wgs:long "2.3833333333333" ; vcard:country "FR" . dc:source . r:type air:Airport ; time:timezone [ ical:tzid "Europe/Paris" ] ; air:location "Paris" ; air:name "Charles-De-Gaulle" ; wgs:lat "49.016666666667" ; wgs:long "2.55" ; vcard:country "FR" .