dcat:centroid leaf node


URI

http://www.w3.org/ns/dcat#centroid

Label

Location - centroid

Description

This property refers to the geographic center (centroid) of a resource

Usage

DOMAINPROPERTYRANGE
dcterms:Location dcat:centroid rdfs:Literal

Implementation

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .

dcat:centroid a owl:DatatypeProperty ;
    rdfs:label "Location - centroid"@en ;
    dcterms:identifier "dcat:centroid" ;
    vann:usageNote "Recommended property. This property refers to the geographic center (centroid) of a resource."@en ;
    rdfs:comment "This property refers to the geographic center (centroid) of a resource"@en ;
    rdfs:domain dcterms:Location ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:location_centroid> ;
    rdfs:range rdfs:Literal .