@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix bcp47: <http://w3id.org/meta-share/bcp47/> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ms: <http://w3id.org/meta-share/meta-share/> .

<http://publications.europa.eu/resource/authority/continent/ANTARCTICA> owl:sameAs bcp47:region_AQ .
dc:Location
  rdfs:label "Location"@en ;
  a owl:Class .

skos:Concept a owl:Class .
bcp47:region_AQ
  ms:hasIANASubtag "AQ" ;
  skos:topConceptOf ms:LocationTaxonomy ;
  skos:prefLabel "Antarctica"@en ;
  skos:inScheme ms:LocationTaxonomy ;
  rdfs:label "Antarctica"@en ;
  a dc:Location, owl:NamedIndividual, skos:Concept .

ms:hasIANASubtag
  rdfs:comment "Used in BCP47 recommendation for the subtag of a language, script, region or variant"@en ;
  rdfs:label "IANA subtag"@en .

owl:NamedIndividual
  rdfs:label "Named individual"@en ;
  a owl:Class .

<http://publications.europa.eu/resource/authority/country/ATA> owl:sameAs bcp47:region_AQ .
ms:LocationTaxonomy
  rdfs:label "Location Taxonomy"@en ;
  skos:prefLabel "Location Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme ;
  skos:hasTopConcept bcp47:region_AQ .

