@prefix on: <https://test.uncefact.org/vocabulary/object-nature/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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 ts: <https://test.uncefact.org/vocabulary/term-status/> .
@prefix unece: <https://test.uncefact.org/vocabulary/> .
@prefix unece-mod: <https://test.uncefact.org/vocabulary/module/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

unece:latitude a owl:DatatypeProperty ;
    rdfs:label "latitude"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The latitude of a location (WGS 84)."@en ;
    skos:exactMatch schema:latitude ;
    schema:domainIncludes unece:Coordinate,
        unece:Location ;
    schema:rangeIncludes xsd:decimal ;
    unece:termStatus ts:proposed .

unece:longitude a owl:DatatypeProperty ;
    rdfs:label "longitude"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:definition "The longitude of a location (WGS 84)."@en ;
    skos:exactMatch schema:longitude ;
    schema:domainIncludes unece:Coordinate,
        unece:Location ;
    schema:rangeIncludes xsd:decimal ;
    unece:termStatus ts:proposed .

unece:Coordinate a owl:Class ;
    rdfs:label "Coordinate"@en ;
    rdfs:isDefinedBy unece-mod:core ;
    skos:closeMatch schema:GeoCoordinates ;
    skos:definition "A geographic point defined by latitude and longitude (WGS 84)."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

