@prefix : <https://w3id.org/itsdata/weather/v1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix its-core: <https://w3id.org/itsdata/core/v1/> .
@prefix cdm1: <https://w3id.org/citydata/part1/v1/> .

:CorePattern
    a owl:Ontology ;
    dcterms:title "ITS Weather Core"@en ;
    skos:definition "Core abstractions for concepts related to the weather topic area of the ITS domain."@en ;
    dcterms:creator "Kenneth Vaughn" ;
    dcterms:created "Draft" ;
    dcterms:modified "2026-07-29"^^xsd:date ;
    dcterms:license "http://creativecommons.org/licenses/by/4.0/" ;
    its-core:draft "true" ;
    owl:versionInfo "0.0.1-alpha.1" ;
    owl:versionIRI <https://w3id.org/itsdata/weather/v1/0.0.1-alpha.1> ;
    vann:preferredNamespacePrefix "its-weather" ;
    vann:preferredNamespaceUri "https://w3id.org/itsdata/weather/v1/" ;
    owl:imports its-core: .

#################################################################
# Core classes
#################################################################

:WeatherThing
    a owl:Class ;
    skos:definition "Parent class for classes within the weather topic area of the ITS domain."@en .

#################################################################
# Core properties
#################################################################

:WeatherObjectProperty
    a owl:ObjectProperty ;
    skos:definition "Organizational super-property for object properties within the weather topic area of the ITS domain."@en .

:WeatherDataProperty
    a owl:DatatypeProperty ;
    skos:definition "Organizational super-property for data properties within the weather topic area of the ITS domain."@en .


