/usr/share/tracker/ontologies/40-mlo.ontology is in tracker 0.16.2-1ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
@prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#> .
@prefix nco: <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#> .
@prefix mlo: <http://www.tracker-project.org/temp/mlo#> .
@prefix tracker: <http://www.tracker-project.org/ontologies/tracker#> .
@prefix nao: <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#> .
mlo: a tracker:Namespace, tracker:Ontology ;
tracker:prefix "mlo" ;
nao:deprecated true ;
nao:lastModified "2011-03-28T19:32:00Z" .
mlo:GeoLocation a rdfs:Class ;
rdfs:label "Location" ;
rdfs:comment "A place in the space, can be defined by coordinates, text or box";
nao:deprecated true ;
rdfs:subClassOf nie:InformationElement.
mlo:GeoPoint a rdfs:Class ;
rdfs:label "Point on the earth" ;
rdfs:comment "The inherited properties from InformationElement can be used to add details." ;
nao:deprecated true ;
rdfs:subClassOf nie:InformationElement .
mlo:GeoSphere a rdfs:Class ;
rdfs:label "Spherical space" ;
rdfs:comment "Point and radius to define an area in the space";
nao:deprecated true ;
rdfs:subClassOf mlo:GeoPoint .
mlo:GeoBoundingBox a rdfs:Class ;
rdfs:label "Bounding box";
rdfs:comment "Bounding box for a region in the space, defined with 2 points in 2D. We assume that the box is always aligned with parallels and meridians.";
nao:deprecated true ;
rdfs:subClassOf nie:InformationElement .
mlo:LocationBoundingBox a rdfs:Class ;
rdfs:label "Box containing a relevant location (places that cannot be described in one concrete point)" ;
nao:deprecated true ;
rdfs:subClassOf mlo:GeoBoundingBox .
mlo:Route a rdfs:Class ;
rdfs:label "Minimum box containing all the points traversed in sequence." ;
nao:deprecated true ;
rdfs:subClassOf mlo:GeoBoundingBox .
mlo:LandmarkCategory a rdfs:Class ;
rdfs:label "Landmark category";
rdfs:comment "Predefined set of instances for categories of landmarks";
nao:deprecated true ;
rdfs:subClassOf nie:InformationElement.
mlo:isRemovable a rdf:Property ;
rdfs:label "Is removable";
rdfs:comment "Flag to indicate if this instance is removable. This restriction is not enforced by tracker; it is API responsability to honor the value";
rdfs:domain mlo:LandmarkCategory ;
nao:deprecated true ;
rdfs:range xsd:boolean.
mlo:Landmark a rdfs:Class ;
rdfs:label "Point with special relevance for the user" ;
rdfs:subClassOf nie:InformationElement ;
nao:deprecated true ;
rdfs:comment "Use the nie title, description, ... properties" .
mlo:PointOfInterest a rdfs:Class ;
rdfs:label "Use mlo:Landmark instead" ;
rdfs:subClassOf mlo:Landmark ;
nao:deprecated true ;
rdfs:comment "Use the nie title, description, ... properties".
mlo:belongsToCategory a rdf:Property ;
rdfs:label "Belongs to category";
rdfs:comment "Relation of a landmark with a landmark category";
rdfs:domain mlo:Landmark ;
nao:deprecated true ;
rdfs:range mlo:LandmarkCategory .
# Properties of GeoPoint
mlo:latitude a rdf:Property ;
rdfs:label "Latitude";
rdfs:comment "Positive values for the north hemisphere, negative for the south" ;
rdfs:domain mlo:GeoPoint ;
nao:deprecated true ;
rdfs:range xsd:double .
mlo:longitude a rdf:Property ;
rdfs:label "Longitude" ;
rdfs:comment "Positive to the East of the Greenwich meridian, negative to the West (following WGS-84)" ;
rdfs:domain mlo:GeoPoint ;
nao:deprecated true ;
rdfs:range xsd:double .
mlo:altitude a rdf:Property ;
rdfs:label "Altitude" ;
rdfs:comment "Altitude following WGS 84 reference";
rdfs:domain mlo:GeoPoint ;
nao:deprecated true ;
rdfs:range xsd:double .
mlo:timestamp a rdf:Property ;
rdfs:label "Timestamp" ;
rdfs:comment "Timestamp when the geopoint is referenced. Create subproperties for certain use cases" ;
rdfs:domain mlo:GeoPoint ;
nao:deprecated true ;
rdfs:range xsd:dateTime .
# Properties of LocationBoundingBox
mlo:boxSouthWestCorner a rdf:Property ;
rdfs:label "South-west corner of the bounding box" ;
rdfs:domain mlo:LocationBoundingBox ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint.
mlo:boxEastLimit a rdf:Property ;
rdfs:label "Length of the box in the East direction" ;
rdfs:domain mlo:LocationBoundingBox ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint.
mlo:boxVerticalLimit a rdf:Property ;
rdfs:label "Length of the box in the Up direction (height)" ;
rdfs:domain mlo:LocationBoundingBox ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint.
mlo:boxNorthLimit a rdf:Property ;
rdfs:label "Length of the box in the North direction" ;
rdfs:domain mlo:LocationBoundingBox ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint.
mlo:bbNorthWest a rdf:Property ;
rdfs:label "North west corner";
rdfs:comment "North west corner of a bounding box. The GeoPoint is interpreted in 2D";
rdfs:domain mlo:GeoBoundingBox ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint .
mlo:bbSouthEast a rdf:Property ;
rdfs:label "South east corner";
rdfs:comment "South east corner of a bounding box. The GeoPoint is interpreted in 2D";
rdfs:domain mlo:GeoBoundingBox ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint .
# Properties of Route
mlo:startTime a rdf:Property ;
rdfs:label "Time when the first point in the route was saved" ;
rdfs:domain mlo:Route ;
nao:deprecated true ;
rdfs:range xsd:dateTime .
mlo:endTime a rdf:Property ;
rdfs:label "Time when the last point in the route was saved" ;
rdfs:domain mlo:Route ;
nao:deprecated true ;
rdfs:range xsd:dateTime .
mlo:routeDetails a rdf:Property ;
rdfs:label "Pointer to a file containing route details (e.g. KML file)." ;
rdfs:comment "FIXME Domain can be resource if we handle map-files correctly in the ontology";
rdfs:domain mlo:Route ;
nao:deprecated true ;
rdfs:range xsd:string .
# Properties of GeoSphere
mlo:radius a rdf:Property ;
rdfs:label "Radius";
rdfs:comment "Radius from the center to define an area. Some applications can use it in 2D sense, making then a circle instead of a sphere" ;
rdfs:domain mlo:GeoSphere ;
nao:deprecated true ;
rdfs:range xsd:double .
# FIXME Domain rdfs:Resource?? to link files and not only content?
mlo:location a rdf:Property ;
tracker:writeback true ;
rdfs:label "Property linking something to a location" ;
rdfs:comment "This can be subclassed to add semantics" ;
rdfs:domain nie:InformationElement ;
tracker:indexed true ;
nao:deprecated true ;
rdfs:range mlo:GeoLocation .
# Properties of GeoLocation
mlo:asBoundingBox a rdf:Property ;
rdfs:label "As bounding box" ;
rdfs:comment "Representation of the location as bounding box" ;
tracker:indexed true ;
rdfs:domain mlo:GeoLocation ;
nao:deprecated true ;
rdfs:range mlo:GeoBoundingBox .
mlo:asGeoPoint a rdf:Property ;
rdfs:label "As geo point" ;
rdfs:comment "Representation of the location as geo point" ;
tracker:indexed true ;
rdfs:domain mlo:GeoLocation ;
nao:deprecated true ;
rdfs:range mlo:GeoPoint .
mlo:asPostalAddress a rdf:Property ;
rdfs:label "As postal address" ;
rdfs:comment "Representation of the location as text address" ;
tracker:indexed true ;
rdfs:domain mlo:GeoLocation ;
nao:deprecated true ;
rdfs:range nco:PostalAddress .
# TODO: These are ad-hoc added by Philip to support writeback of locations
mlo:city a rdf:Property ;
tracker:writeback true ;
rdfs:label "City" ;
nao:deprecated true;
rdfs:domain mlo:GeoPoint ;
rdfs:range xsd:string .
mlo:country a rdf:Property ;
tracker:writeback true ;
rdfs:label "Country" ;
nao:deprecated true ;
rdfs:domain mlo:GeoPoint ;
rdfs:range xsd:string .
mlo:state a rdf:Property ;
tracker:writeback true ;
rdfs:label "State" ;
nao:deprecated true ;
rdfs:domain mlo:GeoPoint ;
rdfs:range xsd:string .
mlo:address a rdf:Property ;
tracker:writeback true ;
rdfs:label "Address" ;
nao:deprecated true ;
rdfs:domain mlo:GeoPoint ;
rdfs:range xsd:string .
# Properties of Point of Interest
mlo:poiLocation a rdf:Property ;
rdfs:label "POI Location" ;
rdfs:comment "Coordinates of the point (Use the mlo:location property inherited from IE" ;
nao:deprecated true;
rdfs:domain mlo:Landmark ;
rdfs:range mlo:GeoPoint .
###############################################
# Predefined categories coming from Symbian
# - move to a different file?
###############################################
mlo:predefined-landmark-category-accommodation a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Accommodation";
nie:identifier "3000";
nao:deprecated true ;
nie:description "Hotel, Camping site".
mlo:predefined-landmark-category-business a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Business";
nie:identifier "6000";
nao:deprecated true ;
nie:description "Bank, Factory, Office".
mlo:predefined-landmark-category-communication a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Communication";
nie:identifier "9000";
nao:deprecated true ;
nie:description "Internet Access Point, Public Telephone, Wireless LAN Hot Spot".
mlo:predefined-landmark-category-educational-institute a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Educational institute";
nie:identifier "12000";
nao:deprecated true ;
nie:description "School, College".
mlo:predefined-landmark-category-entertainment a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Entertainment";
nie:identifier "15000";
nao:deprecated true ;
nie:description "Amusement park, Cinema, Concert hall, Night club".
mlo:predefined-landmark-category-food-beverage a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Food & Beverage";
nie:identifier "18000";
nao:deprecated true ;
nie:description "Fast food, Restaurant, Café, Bar".
mlo:predefined-landmark-category-geographical-area a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Geographical area";
nie:identifier "21000";
nao:deprecated true ;
nie:description "City, City center, Town".
mlo:predefined-landmark-category-outdoor-activities a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Outdoor activities";
nie:identifier "24000";
nao:deprecated true ;
nie:description "Camping site, Fishing place, Hunting, National park, Playground".
mlo:predefined-landmark-category-people a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "People";
nie:identifier "27000";
nao:deprecated true ;
nie:description "My home, My friends home, Fathers summer cottage, Childs school".
mlo:predefined-landmark-category-public-service a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Public service";
nie:identifier "30000";
nao:deprecated true ;
nie:description "Tourist information office, Government office, Library, Post office, Hospital, Police ".
mlo:predefined-landmark-category-religious-places a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Religious places";
nie:identifier "33000";
nao:deprecated true ;
nie:description "Church, Mosque".
mlo:predefined-landmark-category-shopping a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Shopping";
nie:identifier "36000";
nao:deprecated true ;
nie:description "Market Place, Pharmacy, Shop, Shopping Center".
mlo:predefined-landmark-category-sightseeing a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Sightseeing";
nie:identifier "39000";
nao:deprecated true ;
nie:description "Monument, Mountain top, Museum".
mlo:predefined-landmark-category-sports a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Sports";
nie:identifier "42000";
nao:deprecated true ;
nie:description "Bowling, Golf course, Ice hockey hall, Stadium".
mlo:predefined-landmark-category-transport a mlo:LandmarkCategory ;
mlo:isRemovable false ;
nie:title "Transport";
nie:identifier "45000";
nao:deprecated true ;
nie:description "Airport, Bus stop, Harbour, Railway Station, Rest area".
|