@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://data.ign.fr/def/geometrie#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . ns0:boundary a owl:ObjectProperty ; rdfs:comment "Relie un polygone à un anneau décrivant sa frontière."@fr ; rdfs:domain ns0:Polygon ; rdfs:label "boundary"@en, "frontière"@fr ; rdfs:range ns0:LinearRing . ns0:exterior rdfs:subPropertyOf ns0:boundary . ns0:interior rdfs:subPropertyOf ns0:boundary .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://data.ign.fr/def/geometrie#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ns0:boundary
    a owl:ObjectProperty ;
    rdfs:comment "Relie un polygone à un anneau décrivant sa frontière."@fr ;
    rdfs:domain ns0:Polygon ;
    rdfs:label "boundary"@en, "frontière"@fr ;
    rdfs:range ns0:LinearRing .

ns0:exterior
    rdfs:subPropertyOf ns0:boundary .

ns0:interior
    rdfs:subPropertyOf ns0:boundary .