@prefix dct: <http://purl.org/dc/terms/> .
@prefix ns1: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix s4auto: <https://saref.etsi.org/saref4auto/> .

s4auto:Vehicle rdfs:subClassOf [ a owl:Restriction ;
            owl:onProperty s4auto:hasEstimatedRendezvousLocation ;
            owl:someValuesFrom s4auto:RendezvousLocation ] .

s4auto:hasEstimatedRendezvousLocation rdfs:range s4auto:RendezvousLocation .

<https://saref.etsi.org/saref4auto/v1.1.1/> dct:references s4auto:RendezvousLocation ;
    dct:subject s4auto:RendezvousLocation .

s4auto:RendezvousLocation a owl:Class ;
    rdfs:label "RendezvousLocation"@en ;
    dct:isReferencedBy <https://saref.etsi.org/saref4auto/v1.1.1/> ;
    rdfs:comment "It is the estimated location where the vehicle member joins the platoon. It is expressed in global coordinates (lat, long, alt), e.g. according to WGS 84."@en ;
    rdfs:isDefinedBy <https://saref.etsi.org/saref4auto/v1.1.1/> ;
    rdfs:seeAlso <https://saref.etsi.org/saref4auto/v1.1.1/> ;
    rdfs:subClassOf s4auto:Point ;
    ns1:hiddenLabel "RendezvousLocation" .

