dcat:temporalResolution leaf node


URI

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

Label

Raster - temporal resolution

Description

This property refers to the minimum time period resolvable in a raster dataset. If the dataset is a time-series this should correspond to the spacing of items in the series. For other kinds of dataset, this property will usually indicate the smallest time difference between items in the dataset.

Usage

DOMAINPROPERTYRANGE
klms:Raster dcat:temporalResolution xsd:duration

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:temporalResolution a owl:DatatypeProperty ;
    rdfs:label "Raster - temporal resolution "@en ;
    dcterms:identifier "dcat:temporalResolution" ;
    vann:usageNote "Optional property. This property refers to the minimum time period resolvable in a raster dataset. "@en ;
    rdfs:comment "This property refers to the minimum time period resolvable in a raster dataset. If the dataset is a time-series this should correspond to the spacing of items in the series. For other kinds of dataset, this property will usually indicate the smallest time difference between items in the dataset."@en ;
    rdfs:domain :Raster ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:dataset_temporal_resolution> ;
    rdfs:range xsd:duration .