http://www.opengis.net/ont/geosparql#Feature
A discrete spatial phenomenon in a universe of discourse.
Instances of geo:Feature can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class geo:Feature | |||
| geo:hasGeometry | rdf:Property | A spatial representation for a given Feature. | geo:Geometry |
| From class owl:Thing | |||
| topos:osmKey | owl:AnnotationProperty | OpenStreetMap key aligned with a ToposKG predicate. | owl:Thing |
| topos:osmTag | owl:AnnotationProperty | OpenStreetMap key/value tag or wildcard key alignment. | owl:Thing |
| topos:osmValue | owl:AnnotationProperty | OpenStreetMap value aligned with a ToposKG predicate when the mapping is key=value. | owl:Thing |
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
geo:Feature a rdfs:Class,
owl:Class ;
rdfs:isDefinedBy geo: ;
rdfs:subClassOf geo:SpatialObject ;
owl:disjointWith geo:Geometry ;
skos:definition "A discrete spatial phenomenon in a universe of discourse."@en ;
skos:note "A Feature represents a uniquely identifiable phenomenon, for example a river or an apple. While such phenomena, and therefore the Features used to represent them, are bounded, their boundaries may be crisp, vague, and change with time. While discrete in nature, Features may be created from continuous observations, such as an isochrone that determines the region that can be reached by ambulance within 5 minutes."@en ;
skos:prefLabel "Feature"@en .