geo:Geometry leaf node


URI

http://www.opengis.net/ont/geosparql#Geometry

Label

Geometry

Description

A coherent set of direct positions in space. The positions are held within a Spatial Reference System (SRS).

Superclasses (1)

Usage

Instances of geo:Geometry can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class geo:Geometry
geo:asWKT rdf:Property The WKT serialization of a Geometry. geo:wktLiteral
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

Implementation

@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:Geometry a rdfs:Class,
        owl:Class ;
    rdfs:isDefinedBy geo: ;
    rdfs:subClassOf geo:SpatialObject ;
    owl:disjointWith geo:Feature ;
    skos:definition "A coherent set of direct positions in space. The positions are held within a Spatial Reference System (SRS)."@en ;
    skos:note "Geometry can be used as a representation of the shape, extent or location of a Feature and may exist as a self-contained entity."@en ;
    skos:prefLabel "Geometry"@en .