dcat:spatialResolutionInMeters leaf node


URI

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

Label

Raster - spatial resolution

Description

This property refers to the minimum spatial separation resolvable in a raster dataset, measured in meters.

Usage

DOMAINPROPERTYRANGE
klms:Raster dcat:spatialResolutionInMeters xsd:decimal

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@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/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

dcat:spatialResolutionInMeters a owl:DatatypeProperty ;
    rdfs:label "Raster - spatial resolution"@en ;
    dcterms:identifier "dcat:spatialResolutionInMeters" ;
    vann:usageNote "Optional property. This property refers to the minimum spatial separation resolvable in a raster dataset, measured in meters. "@en ;
    rdfs:comment "This property refers to the  minimum spatial separation resolvable in a raster dataset, measured in meters."@en ;
    rdfs:domain :Raster ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:dataset_spatial_resolution> ;
    rdfs:range xsd:decimal .