@prefix dbp: . @prefix dc: . @prefix foaf: . @prefix gn: . @prefix gr: . @prefix lgd: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix vann: . @prefix xsd: . # --- Own namespaces ------------------------------------------ @prefix cm: . # --- Ontology metadata --------------------------------------- cm: a owl:Ontology ; dc:title "Czech Municipalities Ontology"@en, "Ontologie pro obce v ČR"@cs ; dc:description "Ontologie pro obce poskytuje vyjadřovací prostředky pro popis samosprávních celků ČR od krajů přes okresy až po samotné obce."@cs ; dc:modified "2012-05-16"^^xsd:date ; vann:preferredNamespaceUri "http://purl.org/czech-municipalities/geography#" ; vann:preferredNamespacePrefix "cm" ; dc:creator . a foaf:Person ; foaf:name "Ondřej Pánek" ; foaf:mbox . ######## ######## Classes ######## # Regions cm:Region a rdfs:Class ; rdfs:subClassOf gn:Feature ; rdfs:subClassOf lgd:Region ; rdfs:subClassOf gr:BusinessEntity ; rdfs:subClassOf dc:Agent ; rdfs:subClassOf foaf:Organization ; rdfs:label "Kraj"@cs, "Region"@en ; rdfs:comment "Základní třída reprezentující kraj v ČR"@cs ; rdfs:comment "Basic class representing a region in the Czech Republic"@en ; rdfs:isDefinedBy cm: ; . # Counties cm:County a rdfs:Class ; rdfs:subClassOf gn:Feature ; rdfs:subClassOf lgd:County ; rdfs:label "Okres"@cs, "Count"@en ; rdfs:comment "Základní třída reprezentující okres v ČR"@cs ; rdfs:comment "Basic class representing a county in the Czech Republic"@en ; rdfs:isDefinedBy cm: ; . # Municipalities cm:Municipality a rdfs:Class ; rdfs:subClassOf gn:Feature ; rdfs:subClassOf lgd:Municipality ; rdfs:subClassOf gr:BusinessEntity ; rdfs:subClassOf dc:Agent ; rdfs:subClassOf foaf:Organization ; rdfs:label "Obec"@cs, "Municipality"@en ; rdfs:comment "Základní třída reprezentující obec v ČR"@cs ; rdfs:comment "Basic class representing a municipality in the Czech Republic"@en ; rdfs:isDefinedBy cm: ; rdfs:seeAlso dbp:Municipality; . ######## ######## Properties ######## # Part of a region cm:inRegion a owl:FunctionalProperty ; rdfs:subPropertyOf gn:locatedIn; rdfs:label "Příslušnost ke kraji"@cs, "Relation to a region"@en ; rdfs:comment "Vlastnost zeměpisného místa určující do jakého kraje ČR patří"@cs ; rdfs:comment "Property for a geographic place defining which region of the Czech Republic it belongs to"@en ; rdfs:domain gn:Feature ; rdfs:range cm:Region ; rdfs:isDefinedBy cm: . # Part of a county cm:inCounty a owl:FunctionalProperty ; rdfs:subPropertyOf gn:locatedIn; rdfs:label "Příslušnost k okresu"@cs, "Relation to a county"@en ; rdfs:comment "Vlastnost zeměpisného místa určující do jakého okresu ČR patří"@cs ; rdfs:comment "Property for a geographic place defining which county of the Czech Republic it belongs to"@en ; rdfs:domain gn:Feature ; rdfs:range cm:County ; rdfs:isDefinedBy cm: . # Range of ZIP - min cm:minZIP a owl:FunctionalProperty ; rdfs:label "Rozsah PSČ - Od"@cs, "Range of ZIP - From"@en ; rdfs:comment "Vlastnost obce ČR určující začínající hranici rozsahu PSČ (poštovní směrovací číslo)"@cs ; rdfs:comment "Property for a municipality in the Czech Republic defining a starting point of range of ZIP codes"@en ; rdfs:domain cm:Municipality ; rdfs:range rdfs:Literal ; rdfs:isDefinedBy cm: . # Range of ZIP - max cm:maxZIP a owl:FunctionalProperty ; rdfs:label "Rozsah PSČ - Do"@cs, "Range of ZIP - To"@en ; rdfs:comment "Vlastnost obce ČR určující končící hranici rozsahu PSČ (poštovní směrovací číslo)"@cs ; rdfs:comment "Property for a municipality in the Czech Republic defining an ending point of range of ZIP codes"@en ; rdfs:domain cm:Municipality ; rdfs:range rdfs:Literal ; rdfs:isDefinedBy cm: . # NUTS code cm:nuts a owl:InverseFunctionalProperty ; rdfs:subClassOf dc:identifier ; rdfs:label "NUTS - územní kód"@cs, "NUTS - geocode"@en ; rdfs:comment "Vlastnost oblasti určující její NUTS (Nomenklatura územních statistických jednotek) územní kód"@cs ; rdfs:comment "Property for a geoographic feature defining its NUTS (Nomenclature of Territorial Units for Statistics) geocode"@en ; rdfs:domain cm:Region ; rdfs:range rdfs:Literal ; rdfs:isDefinedBy cm: . # County shortcut cm:countyShortcut a owl:InverseFunctionalProperty ; rdfs:subClassOf dc:identifier ; rdfs:label "Zkratka okresu ČR"@cs, "Czech county shortcut"@en ; rdfs:comment "Vlastnost okresu ČR určující jeho unikátní zkratku."@cs ; rdfs:comment "Property for a county in the Czech Republic defining its unique shortcut"@en ; rdfs:domain cm:County ; rdfs:range rdfs:Literal ; rdfs:isDefinedBy cm: .