@prefix : . @prefix rdfs: . @prefix xsd: . @prefix owl: . @prefix skos: . @prefix ogdwien: . @prefix urbanaudit: . @prefix dbpedia-owl: . @prefix geonames: . @prefix un: . @prefix ode: . @prefix wb: . @prefix ua: . :CityDataContext a rdfs:Class ; rdfs:comment "A CitydataContext is a container of property value pairs that hold yfor a certain Spatial Context and Temporal Context"@en. :Indicator a owl:DatatypeProperty ; rdfs:comment "This property collects all indicators"@en . :Prediction a rdfs:Class ; rdfs:comment "This describes that the source is a predicted"@en . :PredictionApproach a rdfs:Class ; rdfs:comment "Base prediction approach "@en . :StandardPCAPrediction rdfs:subClassOf :PredictionApproach ; rdfs:comment "This describes that predicted is created by the standard PCA-based method "@en . :CrossDatasetPrediction rdfs:subClassOf :PredictionApproach ; rdfs:comment "This describes that predicted is created by the cross dataset method "@en . :PredictionMethod a rdfs:Class ; rdfs:comment "Base prediction method"@en. :PredictionMethodKNN rdfs:subClassOf :PredictionMethod ; rdfs:comment "Prediction method using KNN regression"@en . :PredictionMethodMLR rdfs:subClassOf :PredictionMethod ; rdfs:comment "Prediction method using multiple linear regression"@en . :PredictionMethodRFD rdfs:subClassOf :PredictionMethod ; rdfs:comment "Prediction method using randrom forest trees regression"@en . :unit a owl:DatatypeProperty; rdfs:comment "Each indicator has a unit"; rdfs:domain :Indicator; rdfs:range rdfs:Literal . :year a owl:DatatypeProperty; rdfs:comment "Temporal context, dimension year"; rdfs:domain :Indicator; rdfs:range xsd:integer. :category a owl:ObjectProperty; rdfs:comment "Each indicator has a Category (Demography, Social Aspects, Economic Aspects, Training and Education, Environment, Travel and Transport, Culture and Recreation)"@en; rdfs:domain :Indicator; rdfs:range :Category . :hasIndicator a owl:ObjectProperty ; rdfs:comment "Something has an indicator" ; rdfs:range :Indicator . :source a owl:ObjectProperty; rdfs:label "Source"@en; rdfs:label "Quelle"@de; rdfs:comment "denotes the Website or other source, from where the data was obtained."@en; rdfs:domain :CityDataContext ; rdfs:range rdfs:Resource. :spatialContext a owl:ObjectProperty ; rdfs:label "Spatial context"@en; rdfs:label "Räumlicher Kontext"@de; rdfs:comment "denotes the spatial context of a data context"@en; rdfs:domain :CityDataContext ; rdfs:range :SpatialContext. :dateValidity a owl:DatatypeProperty ; rdfs:label "Temporal context"@en; rdfs:label "Zeitlicher Kontext"@de; rdfs:comment "denotes the temporal reference time stamp for the data context"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:dateTime . :periodValidity a owl:ObjectProperty ; rdfs:label "Duration of validity"@en; rdfs:label "Gültigkeitszeitraum"@de; rdfs:comment "denotes the update period for this date, i.e. the period of validity for this value (backwards from the reference date (:dateValidity)"@en ; rdfs:domain :CityDataContext ; rdfs:range :PeriodValidity . :biannual a :PeriodValidity . :annual a :PeriodValidity . :quarterly a :PeriodValidity . :monthly a :PeriodValidity . :weekly a :PeriodValidity . :daily a :PeriodValidity . :hourly a :PeriodValidity . :irregular a :PeriodValidity . :PeriodValidity a owl:Class; owl:oneOf ( :biannual :annual :quarterly :monthly :weekly :daily :hourly :irregularly ). :dateRetrieved a owl:DatatypeProperty ; rdfs:domain :CityDataContext ; rdfs:range xsd:dateTime . :estimatedRMSE a owl:DatatypeProperty ; rdfs:label "has estimated root mean square error"@en ; rdfs:range xsd:decimal . # TODO: How does this property distinguish from ":source", would it be better # to add a property "retrieved by" where we can add a name or alike?" :retrievedFrom a owl:ObjectProperty ; rdfs:label "retrieved from"@en; rdfs:label "Herkunft"@de; rdfs:domain :CityDataContext ; rdfs:range rdfs:Resource. :predictionContext a owl:ObjectProperty ; rdfs:comment "Linkes the prediction statistics to an indicator"@en; rdfs:domain :Indicator ; rdfs:range :Prediction . :predictionApproach a owl:ObjectProperty ; rdfs:comment "Linkes the prediction statistics to an indicator"@en; rdfs:domain :Prediction ; rdfs:range :PredictionApproach . :predictionMethod a owl:ObjectProperty ; rdfs:comment "Linkes the prediction statistics to an indicator"@en; rdfs:domain :Prediction ; rdfs:range :PredictionMethod . :predictionSize a owl:DatatypeProperty; rdfs:comment "Size of prediction"; rdfs:domain :Prediction; rdfs:range xsd:integer. :predictionPredictors a owl:DatatypeProperty; rdfs:comment "Nr of predictors"; rdfs:domain :Prediction; rdfs:range xsd:integer. :estimatedRMSEPct a owl:DatatypeProperty; rdfs:comment "Quality of prediction"; rdfs:domain :Prediction; rdfs:range xsd:decimal. ############################################# # SPATIAL CONCEPTS :City rdfs:subClassOf :SpatialContext ; rdfs:label "Stadt"@de, "City"@en, "Town"@en, "Community"@en . :Cityname a owl:DatatypeProperty; rdfs:comment "Each city has a name"; rdfs:domain :City; rdfs:range rdfs:Literal . :Country rdfs:subClassOf :SpatialContext; rdfs:label "Staat"@de, "Country"@en, "Land"@de. :Province rdfs:subClassOf :SpatialContext ; rdfs:label "Bundesland"@de, "Provinz"@de, "County"@en, "Province"@en, "Federal State"@en . :Region rdfs:subClassOf :SpatialContext ; rdfs:label "Region"@de, "region"@en . :District rdfs:subClassOf :SpatialContext ; rdfs:label "Bezirk"@de, "District"@en . :CityDistrict rdfs:subClassOf :District ; rdfs:label "Stadtbezirk"@de, "Stadtviertel"@en, "Hieb"@at. :CityRegistrationDistrict rdfs:subClassOf :SpatialContext ; rdfs:label "Zaehlbezirk"@de, "Registration district"@en. :CivilParish rdfs:subClassOf :SpatialContext ; rdfs:label "Zaehlsprengel"@de, "Registration subdistrict"@en. :locatedIn a owl:DatatypeProperty ; rdfs:label "located in"@en; rdfs:label "befindet sich in"@de; rdfs:domain :SpatialContext; rdfs:range :SpatialContext. :provinceOfCountry rdfs:subPropertyOf :locatedIn ; rdfs:label "is a province of (country)"@en; rdfs:label "ist eine Provinz von (Land)"@de; rdfs:domain :Province ; rdfs:range :Country . :districtOfProvince rdfs:subPropertyOf :locatedIn ; rdfs:label "is a district of (province)"@en; rdfs:label "ist ein Bezirk von (Provinz)"@de; rdfs:domain :District ; rdfs:range :Province . :districtOfCity rdfs:subPropertyOf :locatedIn ; rdfs:label "is a city district of"@en; rdfs:label "ist ein Stadtbezirk von"@de; rdfs:domain :CityDistrict ; rdfs:range :City . :registrationDistrictOfCity rdfs:subPropertyOf :locatedIn ; rdfs:label "is a registration district of city"@en; rdfs:label "ist ein Zaehlbezirk von"@de; rdfs:domain :CityRegistrationDistrict ; rdfs:range :City . :partOfRegion rdfs:subPropertyOf :locatedIn ; rdfs:label "is a part of (region)"@en; rdfs:label "ist Teil der Region"@de; rdfs:domain :SpatialContext ; rdfs:range :Region . ############################################ # LINEAR DEPENDENCIES :Constraint a owl:Class ; rdfs:label "Constraint"@en ; rdfs:comment "a constraint relating two or more datatype properties with each other"@en . :involves a owl:ObjectProperty ; rdfs:label "involves indicator"@en; rdfs:range :Constraint ; rdfs:domain :Indicator . :constraint a owl:DatatypeProperty ; rdfs:label "has equation constraint"@en ; rdfs:range :Constraint ; rdfs:domain xsd:string . :correlation a owl:DatatypeProperty ; rdfs:label "has correlation"@en ; rdfs:range :Constraint ; rdfs:domain xsd:decimal . :completeObservations a owl:DatatypeProperty ; rdfs:label "based on number of complete observations"@en ; rdfs:range :Constraint ; rdfs:domain xsd:decimal . ############################################# # INDICATOR CATEGORIES :Demography rdfs:label "Demography "@en ; rdfs:label "Demographie "@de ; a :Category, skos:Concept . :SocialAspects rdfs:label "Social Aspects"@en ; rdfs:label "Soziale Aspekte"@de ; a :Category, skos:Concept . :EconomicAspects rdfs:label "Economic Aspects"@en ; rdfs:label "Ökonomische Aspekte"@de ; a :Category, skos:Concept . :TrainingAndEducation rdfs:label "Training and Education"@en ; rdfs:label "Aus- und Weiterbildung"@de ; a :Category, skos:Concept . :Environment rdfs:label "Environment"@en ; rdfs:label "Umwelt"@de ; a :Category, skos:Concept . :TravelAndTransport rdfs:label "Travel and Transport"@en ; rdfs:label "Reisen und Transport"@de ; a :Category, skos:Concept . :CultureAndRecreation rdfs:label "Culture and Recreation"@en ; rdfs:label "Kultur und Erholung"@de ; a :Category, skos:Concept . :Geography rdfs:label "Geography"@en ; rdfs:label "Geographie"@de ; a :Category, skos:Concept . ############################################# # INDICATORS :isCapital a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "" ; rdfs:comment "Is capital city of Country"@en ; rdfs:comment "Ist Hauptstadt eines Landes"@de ; rdfs:label "Capital"@en ; rdfs:label "Hauptstadt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:boolean ; :category :Demography . dbpedia-owl:country a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "" ; rdfs:comment "Country"@en ; rdfs:comment "Land/Nation"@de ; rdfs:label "Country"@en ; rdfs:label "Land"@de ; rdfs:domain :CityDataContext ; rdfs:range rdfs:Resource ; :category :Demography . ############################################# # DEMOGRAPHY INDICATORS # Collective living quarters :collective_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Collective living quarters"@en ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:collective_living_quarters rdfs:subPropertyOf :collective_living_quarters . :households_in_collective_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households in collective living quarters"@en ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_in_collective_living_quarters rdfs:subPropertyOf :households_in_collective_living_quarters . # Households conventional dwellings :households_in_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households in conventional dwellings"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_in_conventional_dwellings rdfs:subPropertyOf :households_in_conventional_dwellings . un:households_in_conventional_dwellings_tenure_occupied_free_of_rent rdfs:subPropertyOf :households_in_conventional_dwellings . un:households_in_conventional_dwellings_tenure_other_arrangements rdfs:subPropertyOf :households_in_conventional_dwellings . un:households_in_conventional_dwellings_tenure_owned rdfs:subPropertyOf :households_in_conventional_dwellings . un:households_in_conventional_dwellings_tenure_rented rdfs:subPropertyOf :households_in_conventional_dwellings . un:households_in_conventional_dwellings_tenure_total rdfs:subPropertyOf :households_in_conventional_dwellings . un:households_in_conventional_dwellings_tenure_unknown rdfs:subPropertyOf :households_in_conventional_dwellings . # Conventional dwellings :conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "Conventional dwellings" ; rdfs:label "Conventional dwellings"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:conventional_dwellings rdfs:subPropertyOf :conventional_dwellings . # Households in housing units :households_in_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households in housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_in_housing_units rdfs:subPropertyOf :households_in_housing_units . un:households_in_housing_units_tenure_occupied_free_of_rent rdfs:subPropertyOf :households_in_housing_units . un:households_in_housing_units_tenure_other_arrangements rdfs:subPropertyOf :households_in_housing_units . un:households_in_housing_units_tenure_owned rdfs:subPropertyOf :households_in_housing_units . un:households_in_housing_units_tenure_rented rdfs:subPropertyOf :households_in_housing_units . un:households_in_housing_units_tenure_total rdfs:subPropertyOf :households_in_housing_units . un:households_in_housing_units_tenure_unknown rdfs:subPropertyOf :households_in_housing_units . # Households in living quarters :households_in_living_quarters_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households in living quarters Total"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_in_living_quarters_total rdfs:subPropertyOf :households_in_living_quarters_total . # Households in other housing units :households_in_other_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households in other housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_in_other_housing_units rdfs:subPropertyOf :households_in_other_housing_units . un:households_in_other_housing_units_tenure_occupied_free_of_rent rdfs:subPropertyOf :households_in_other_housing_units . un:households_in_other_housing_units_tenure_other_arrangements rdfs:subPropertyOf :households_in_other_housing_units . un:households_in_other_housing_units_tenure_owned rdfs:subPropertyOf :households_in_other_housing_units . un:households_in_other_housing_units_tenure_rented rdfs:subPropertyOf :households_in_other_housing_units . un:households_in_other_housing_units_tenure_total rdfs:subPropertyOf :households_in_other_housing_units . un:households_in_other_housing_units_tenure_unknown rdfs:subPropertyOf :households_in_other_housing_units . # Households in unknown living quarters :households_in_unknown_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households in unknown living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_in_unknown_living_quarters rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit_tenure_occupied_free_of_rent rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit_tenure_other_arrangements rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit_tenure_owned rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit_tenure_rented rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit_tenure_total rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_type_of_housing_unit_tenure_unknown rdfs:subPropertyOf :households_in_unknown_living_quarters . un:households_in_unknown_whether_collective_living_quarters rdfs:subPropertyOf :households_in_unknown_living_quarters . # Households roofless :households_roofless a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households roofless"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_roofles rdfs:subPropertyOf :households_roofless . # Households total :households_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Households total"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:households_total rdfs:subPropertyOf :households_total . # Housing units :housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:housing_units rdfs:subPropertyOf :housing_units . # Living quarters :living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:living_quarters rdfs:subPropertyOf :living_quarters . # Other housing units :other_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Other housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:other_housing_units rdfs:subPropertyOf :other_housing_units . # Occupants :occupants_of_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupants"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupants_of_conventional_dwellings rdfs:subPropertyOf :occupants_of_conventional_dwellings . # Occupants of housing units :occupants_of_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupants of housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupants_of_housing_units rdfs:subPropertyOf :occupants_of_housing_units . # Occupants of other housing units :occupants_of_other_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupants of other housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupants_of_other_housing_units rdfs:subPropertyOf :occupants_of_other_housing_units . # Occupants of unknown type of housing unit :occupants_of_unknown_type_of_housing_unit a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupants of unknown type of housing unit"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupants_of_unknown_type_of_housing_unit rdfs:subPropertyOf :occupants_of_unknown_type_of_housing_unit . # Occupied conventional dwellings :occupied_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_fixed_bath_inside rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_no_fixed_bath rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_other_water_supply rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_piped_water_inside rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_total rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_unknown_bathing_facilities rdfs:subPropertyOf :occupied_conventional_dwellings . un:occupied_conventional_dwellings_unknown_water_supply rdfs:subPropertyOf :occupied_conventional_dwellings . # Occupied conventional dwellings with brick walls :occupied_conventional_dwellings_walls_brick a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventionaldwellings with brick walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_brick rdfs:subPropertyOf :occupied_conventional_dwellings_walls_brick . # Occupied conventional dwellings with concrete walls :occupied_conventional_dwellings_walls_concrete a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings with concrete walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_concrete rdfs:subPropertyOf :occupied_conventional_dwellings_walls_concrete . # Occupied conventional dwellings with other walls :occupied_conventional_dwellings_walls_other a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings with other walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_other rdfs:subPropertyOf :occupied_conventional_dwellings_walls_other . # Occupied conventional dwellings with unknown walls :occupied_conventional_dwellings_walls_unknown a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings with unknown walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_unknown rdfs:subPropertyOf :occupied_conventional_dwellings_walls_unknown . # Occupied conventional dwellings with vegetation material walls :occupied_conventional_dwellings_walls_vegetation_material a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings with vegetation material walls "@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_vegetation_material rdfs:subPropertyOf :occupied_conventional_dwellings_walls_vegetation_material . # Occupied conventional dwellings with woold walls :occupied_conventional_dwellings_walls_wood a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings with woold walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_wood rdfs:subPropertyOf :occupied_conventional_dwellings_walls_wood . # Occupied conventional dwellings with adobe walls :occupied_conventional_dwellings_walls_adobe a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied conventional dwellings with adobe walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_conventional_dwellings_walls_adobe rdfs:subPropertyOf :occupied_conventional_dwellings_walls_adobe . # Occupied housing units :occupied_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units rdfs:subPropertyOf :occupied_housing_units . un:occupied_housing_units_total rdfs:subPropertyOf :occupied_housing_units . :occupied_other_housing_units_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_other_housing_units_total rdfs:subPropertyOf :occupied_other_housing_units_total . # Occupied unknown type of housing unit :occupied_unknown_type_of_housing_unit a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied unknown type of housing unit"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_unknown_type_of_housing_unit rdfs:subPropertyOf :occupied_unknown_type_of_housing_unit . un:occupied_unknown_type_of_housing_unit_total rdfs:subPropertyOf :occupied_unknown_type_of_housing_unit . # Occupied housing units with adobe walls :occupied_housing_units_walls_adobe a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units with adobe walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_adobe rdfs:subPropertyOf :occupied_housing_units_walls_adobe . # Occupied housing units with brick walls :occupied_housing_units_walls_brick a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units with brick walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_brick rdfs:subPropertyOf :occupied_housing_units_walls_brick . # Occupied housing units with concrete walls :occupied_housing_units_walls_concrete a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units with concrete walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_concrete rdfs:subPropertyOf :occupied_housing_units_walls_concrete . # Occupied housing units with other walls :occupied_housing_units_walls_other a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units with other walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_other rdfs:subPropertyOf :occupied_housing_units_walls_other . # Occupied housing units with unknown walls :occupied_housing_units_walls_unknown a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units with unknown walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_unknown rdfs:subPropertyOf :occupied_housing_units_walls_unknown . # Occupied housing units with wood walls :occupied_housing_units_walls_wood a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units with wood walls"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_wood rdfs:subPropertyOf :occupied_housing_units_walls_wood . # Occupied housing units walls with vegetation material :occupied_housing_units_walls_vegetation_material a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:label "Occupied housing units walls with vegetation material"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:occupied_housing_units_walls_vegetation_material rdfs:subPropertyOf :occupied_housing_units_walls_vegetation_material . # Population roofless U.N. :population_roofless a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population roofless"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_roofless rdfs:subPropertyOf :population_roofless . # Population male roofless :population_male_roofless a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male roofless"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_roofless rdfs:subPropertyOf :population_male_roofless . # Population female roofless :population_female_roofless a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female roofless"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_roofless rdfs:subPropertyOf :population_female_roofless . # Population other housing units U.N. :population_other_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population other housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_other_housing_units rdfs:subPropertyOf :population_other_housing_units . # Population male other housing units :population_male_other_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male other housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_other_housing_units rdfs:subPropertyOf :population_female_other_housing_units . # Population female other housing units :population_male_other_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female other housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_other_housing_units rdfs:subPropertyOf :population_female_other_housing_units . # Population living quarters U.N. :population_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_living_quarters rdfs:subPropertyOf :population_living_quarters . # Population male living quarters :population_male_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_living_quarters rdfs:subPropertyOf :population_male_living_quarters . # Population female living quarters :population_female_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_living_quarters rdfs:subPropertyOf :population_female_living_quarters . # Population housing units U.N. :population_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_housing_units rdfs:subPropertyOf :population_housing_units . # Population male housing units :population_male_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_housing_units rdfs:subPropertyOf :population_male_housing_units . # Population female housing units :population_female_housing_units a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female housing units"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_housing_units rdfs:subPropertyOf :population_female_housing_units . # Population conventional dwellings U.N. :population_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population conventional dwellings"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_conventional_dwellings rdfs:subPropertyOf :population_conventional_dwellings . # Population male conventional dwellings :population_male_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male conventional dwellings"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_conventional_dwellings rdfs:subPropertyOf :population_male_conventional_dwellings . # Population female conventional dwellings :population_female_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female conventional dwellings"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_conventional_dwellings rdfs:subPropertyOf :population_female_conventional_dwellings . # Population collective living quarters U.N. :population_collective_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population collective living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_collective_living_quarters rdfs:subPropertyOf :population_collective_living_quarters . # Population male collective living quarters :population_male_collective_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male collective living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_collective_living_quarters rdfs:subPropertyOf :population_male_collective_living_quarters . # Population female collective living quarters :population_female_collective_living_quarters a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female collective living quarters"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_collective_living_quarters rdfs:subPropertyOf :population_female_collective_living_quarters . # Population age 0 U.N. :population_age_0 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 0"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_0 rdfs:subPropertyOf :population_age_0 . :population_female_age_0 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 0"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_0 rdfs:subPropertyOf :population_female_age_0 . :population_male_age_0 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 0"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_0 rdfs:subPropertyOf :population_male_age_0 . # Population age 25-29 :population_25-29 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 25-29"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_25_to_29 rdfs:subPropertyOf :population_25-29 . :population_female_25-29 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 25-29"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_25_to_29 rdfs:subPropertyOf :population_female_25-29 . :population_male_25-29 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 25-29"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_25_to_29 rdfs:subPropertyOf :population_male_25-29 . # Population age 30-34 :population_30-34 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons"; rdfs:label "Population age 30 - 34"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_30_to_34 rdfs:subPropertyOf :population_30-34 . :population_female_30-34 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons"; rdfs:label "Population female age 30 - 34"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_30_to_34 rdfs:subPropertyOf :population_female_30-34 . :population_male_30-34 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons"; rdfs:label "Population male age 30 - 34"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_30_to_34 rdfs:subPropertyOf :population_male_30-34 . # Population age 35-39 :population_35-39 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 35-39"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_35_to_39 rdfs:subPropertyOf :population_35-39 . :population_female_35-39 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 35-39"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_35_to_39 rdfs:subPropertyOf :population_female_35-39 . :population_male_35-39 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 35-39"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_35_to_39 rdfs:subPropertyOf :population_male_35-39 . # Population age 40-44 :population_40-44 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 40-44"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_40_to_44 rdfs:subPropertyOf :population_40-44 . :population_female_40-44 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 40-44"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_40_to_44 rdfs:subPropertyOf :population_female_40-44 . :population_male_40-44 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 40-44"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_40_to_44 rdfs:subPropertyOf :population_male_40-44 . # Population age 45-49 :population_45-49 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 45-49"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_45_to_49 rdfs:subPropertyOf :population_45-49 . :population_female_45-49 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 45-49"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_45_to_49 rdfs:subPropertyOf :population_female_45-49 . :population_male_45-49 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 45-49"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_45_to_49 rdfs:subPropertyOf :population_male_45-49 . # Population age 50-54 :population_50-54 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 50-54"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_50_to_54 rdfs:subPropertyOf :population_50-54 . :population_female_50-54 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 50-54"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_50_to_54 rdfs:subPropertyOf :population_50-54 . :population_male_50-54 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 50-54"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_50_to_54 rdfs:subPropertyOf :population_male_50-54 . # Population age 55-59 :population_55-59 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 55-59"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_55_to_59 rdfs:subPropertyOf :population_55-59 . :population_female_55-59 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 55-59"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_55_to_59 rdfs:subPropertyOf :population_female_55-59 . :population_male_55-59 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 55-59"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_55_to_59 rdfs:subPropertyOf :population_male_55-59 . # Population age 60-64 :population_60-64 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 60-64"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_60_to_64 rdfs:subPropertyOf :population_60-64 . :population_female_60-64 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 60-64"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_60_to_64 rdfs:subPropertyOf :population_female_60-64 . :population_male_60-64 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 60-64"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_60_to_64 rdfs:subPropertyOf :population_male_60-64 . # Population age 65-69 :population_65-69 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 65-69"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_65_to_69 rdfs:subPropertyOf :population_65-69 . :population_female_65-69 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 65-69"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_65_to_69 rdfs:subPropertyOf :population_female_65-69 . :population_male_65-69 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 65-69"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_65_to_69 rdfs:subPropertyOf :population_male_65-69 . # Population age 70-74 :population_70-74 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 70-74"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_70_to_74 rdfs:subPropertyOf :population_70-74 . :population_female_70-74 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 70-74"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_70_to_74 rdfs:subPropertyOf :population_female_70-74 . :population_male_70-74 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 70-74"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_70_to_74 rdfs:subPropertyOf :population_male_70-74 . # Population age 75-79 :population_75-79 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 75-79"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_75_to_79 rdfs:subPropertyOf :population_75-79 . :population_female_75-79 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 75-79"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_75_to_79 rdfs:subPropertyOf :population_female_75-79 . :population_male_75-79 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 75-79"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_75_to_79 rdfs:subPropertyOf :population_male_75-79 . # Population age 80-84 :population_80-84 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 80-84"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_80_to_84 rdfs:subPropertyOf :population_80-84 . :population_female_80-84 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 80-84"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_80_to_84 rdfs:subPropertyOf :population_female_80-84 . :population_male_80-84 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 80-84"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_80_to_84 rdfs:subPropertyOf :population_male_80-84 . # Population age 85-89 :population_85-89 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 85-89"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_85_to_89 rdfs:subPropertyOf :population_85-89 . :population_female_85-89 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 85-89"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_85_to_89 rdfs:subPropertyOf :population_female_85-89 . :population_male_85-89 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 85-89"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_85_to_89 rdfs:subPropertyOf :population_male_85-89 . # Population age 90 plus :population_90_plus a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population age 90 plus"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_age_90_plus rdfs:subPropertyOf :population_90_plus . :population_female_90_plus a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population female age 90 plus"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_female_age_90_plus rdfs:subPropertyOf :population_female_90_plus . :population_male_90_plus a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:label "Population male age 90 plus"@en; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . un:population_male_age_90_plus rdfs:subPropertyOf :population_male_90_plus . # Population Total UrbanAudit and U.N. :population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population total"@en ; rdfs:comment "Bevölkerung gesamt"@de ; rdfs:label "Population"@en ; rdfs:label "Bevölkerung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_total rdfs:subPropertyOf :population . dbpedia-owl:populationTotal rdfs:subPropertyOf :population . rdfs:subPropertyOf :population . rdfs:subPropertyOf :population . rdfs:subPropertyOf :population . wb:population_total rdfs:subPropertyOf :population . un:population_total rdfs:subPropertyOf :population . un:population rdfs:subPropertyOf :population . :population_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population male total"@en ; rdfs:comment "Bevölkerung männlich gesamt"@de ; rdfs:label "Population male"@en ; rdfs:label "Bevölkerung männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_male rdfs:subPropertyOf :population_male . un:population_male rdfs:subPropertyOf :population_male . un:population_male_total rdfs:subPropertyOf :population_male . :population_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population female total"@en ; rdfs:comment "Bevölkerung weiblich gesamt"@de ; rdfs:label "Population female"@en ; rdfs:label "Bevölkerung weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_female rdfs:subPropertyOf :population_female . un:population_female rdfs:subPropertyOf :population_female . un:population_female_total rdfs:subPropertyOf :population_female . :proportion_of_population_aged_0-4_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 0-4"@en ; rdfs:comment "Anteil der 0-4-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 0-4"@en ; rdfs:label "Anteil 0-4-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_0-4_years rdfs:subPropertyOf :proportion_of_population_aged_0-4_years . :population_0-4 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 0-4 total"@en ; rdfs:comment "Bevölkerung 0-4-Jährige gesamt"@de ; rdfs:label "Population 0-4"@en ; rdfs:label "Bevölkerung 0-4"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_0-4_years_total rdfs:subPropertyOf :population_0-4 . un:population_age_1_to_4 rdfs:subPropertyOf :population_0-4 . :population_0-4_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 0-4 male"@en ; rdfs:comment "Bevölkerung 0-4-Jährige männlich"@de ; rdfs:label "Population 0-4 male"@en ; rdfs:label "Bevölkerung 0-4 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_0-4_years_male rdfs:subPropertyOf :population_0-4_male . un:population_male_age_1_to_4 rdfs:subPropertyOf :population_0-4_male . :population_0-4_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 0-4 female"@en ; rdfs:comment "Bevölkerung 0-4-Jährige weiblich"@de ; rdfs:label "Population 0-4 female"@en ; rdfs:label "Bevölkerung 0-4 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_0-4_years_female rdfs:subPropertyOf :population_0-4_female . un:population_female_age_1_to_4 rdfs:subPropertyOf :population_0-4_female . :proportion_of_population_aged_5-9_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 5-9"@en ; rdfs:comment "Anteil der 5-9-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 5-9"@en ; rdfs:label "Anteil 5-9-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_5-9_years rdfs:subPropertyOf :proportion_of_population_aged_5-9_years . :population_5-9 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 5-9 total"@en ; rdfs:comment "Bevölkerung 5-9-Jährige gesamt"@de ; rdfs:label "Population 5-9"@en ; rdfs:label "Bevölkerung 5-9"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_5-9_years_total rdfs:subPropertyOf :population_5-9 . un:population_age_5_to_9 rdfs:subPropertyOf :population_5-9 . :population_5-9_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 5-9 male"@en ; rdfs:comment "Bevölkerung 5-9-Jährige männlich"@de ; rdfs:label "Population 5-9 male"@en ; rdfs:label "Bevölkerung 5-9 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_5-9_years_male rdfs:subPropertyOf :population_5-9_male . un:population_male_age_5_to_9 rdfs:subPropertyOf :population_5-9_male . :population_5-9_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 5-9 female"@en ; rdfs:comment "Bevölkerung 5-9-Jährige weiblich"@de ; rdfs:label "Population 5-9 female"@en ; rdfs:label "Bevölkerung 5-9 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_5-9_years_female rdfs:subPropertyOf :population_5-9_female . un:population_female_age_5_to_9 rdfs:subPropertyOf :population_5-9_female . :proportion_of_population_aged_10-14_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 10-14"@en ; rdfs:comment "Anteil der 10-14-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 10-14"@en ; rdfs:label "Anteil 10-14-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_10-14_years rdfs:subPropertyOf :proportion_of_population_aged_10-14_years . :population_10-14 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 10-14 total"@en ; rdfs:comment "Bevölkerung 10-14-Jährige gesamt"@de ; rdfs:label "Population 10-14"@en ; rdfs:label "Bevölkerung 10-14"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_10-14_years_total rdfs:subPropertyOf :population_10-14 . un:population_age_10_to_14 rdfs:subPropertyOf :population_10-14 . :population_10-14_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 10-14 male"@en ; rdfs:comment "Bevölkerung 10-14-Jährige männlich"@de ; rdfs:label "Population 10-14 male"@en ; rdfs:label "Bevölkerung 10-14 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_10-14_years_male rdfs:subPropertyOf :population_10-14_male . un:population_male_age_10_to_14 rdfs:subPropertyOf :population_10-14_male . :population_10-14_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 10-14 female"@en ; rdfs:comment "Bevölkerung 10-14-Jährige weiblich"@de ; rdfs:label "Population 10-14 female"@en ; rdfs:label "Bevölkerung 10-14 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_10-14_years_female rdfs:subPropertyOf :population_10-14_female . un:population_female_age_10_to_14 rdfs:subPropertyOf :population_10-14_female . :proportion_of_population_aged_15-19_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 15-19"@en ; rdfs:comment "Anteil der 15-19-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 15-19"@en ; rdfs:label "Anteil 15-19-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_15-19_years rdfs:subPropertyOf :proportion_of_population_aged_15-19_years . :population_15-19 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 15-19 total"@en ; rdfs:comment "Bevölkerung 15-19-Jährige gesamt"@de ; rdfs:label "Population 15-19"@en ; rdfs:label "Bevölkerung 15-19"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_15-19_years_total rdfs:subPropertyOf :population_15-19 . un:population_age_15_to_19 rdfs:subPropertyOf :population_15-19 . :population_15-19_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 15-19 male"@en ; rdfs:comment "Bevölkerung 15-19-Jährige männlich"@de ; rdfs:label "Population 15-19 male"@en ; rdfs:label "Bevölkerung 15-19 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_15-19_years_male rdfs:subPropertyOf :population_15-19_male . un:population_male_age_15_to_19 rdfs:subPropertyOf :population_15-19_male . :population_15-19_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 15-19 female"@en ; rdfs:comment "Bevölkerung 15-19-Jährige weiblich"@de ; rdfs:label "Population 15-19 female"@en ; rdfs:label "Bevölkerung 15-19 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_15-19_years_female rdfs:subPropertyOf :population_15-19_female . un:population_female_age_15_to_19 rdfs:subPropertyOf :population_15-19_female . :proportion_of_population_aged_20-24_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 20-24"@en ; rdfs:comment "Anteil der 20-24-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 20-24"@en ; rdfs:label "Anteil 20-24-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_20-24_years rdfs:subPropertyOf :proportion_of_population_aged_20-24_years . :population_20-24 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 20-24 total"@en ; rdfs:comment "Bevölkerung 20-24-Jährige gesamt"@de ; rdfs:label "Population 20-24"@en ; rdfs:label "Bevölkerung 20-24"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_20-24_years_total rdfs:subPropertyOf :population_20-24 . un:population_age_20_to_24 rdfs:subPropertyOf :population_20-24 . :population_20-24_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 20-24 male"@en ; rdfs:comment "Bevölkerung 20-24-Jährige männlich"@de ; rdfs:label "Population 20-24 male"@en ; rdfs:label "Bevölkerung 20-24 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_20-24_years_male rdfs:subPropertyOf :population_20-24_male . un:population_male_age_20_to_24 rdfs:subPropertyOf :population_20-24_male . :population_20-24_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 20-24 female"@en ; rdfs:comment "Bevölkerung 20-24-Jährige weiblich"@de ; rdfs:label "Population 20-24 female"@en ; rdfs:label "Bevölkerung 20-24 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_20-24_years_female rdfs:subPropertyOf :population_20-24_female . un:population_female_age_20_to_24 rdfs:subPropertyOf :population_20-24_female . :proportion_of_population_aged_25-34_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 25-34"@en ; rdfs:comment "Anteil der 25-34-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 25-34"@en ; rdfs:label "Anteil 25-34-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_25-34_years rdfs:subPropertyOf :proportion_of_population_aged_25-34_years . :population_on_the_1st_of_january_25-34_years_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 25-34 total"@en ; rdfs:comment "Bevölkerung 25-34-Jährige gesamt"@de ; rdfs:label "Population 25-34"@en ; rdfs:label "Bevölkerung 25-34"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_25-34_years_total rdfs:subPropertyOf :population_on_the_1st_of_january_25-34_years_total . :population_on_the_1st_of_january_25-34_years_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 25-34 male"@en ; rdfs:comment "Bevölkerung 25-34-Jährige männlich"@de ; rdfs:label "Population 25-34 male"@en ; rdfs:label "Bevölkerung 25-34 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_25-34_years_male rdfs:subPropertyOf :population_on_the_1st_of_january_25-34_years_male . :population_on_the_1st_of_january_25-34_years_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 25-34 female"@en ; rdfs:comment "Bevölkerung 25-34-Jährige weiblich"@de ; rdfs:label "Population 25-34 female"@en ; rdfs:label "Bevölkerung 25-34 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_25-34_years_female rdfs:subPropertyOf :population_on_the_1st_of_january_25-34_years_female . :proportion_of_population_aged_35-44_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 35-44"@en ; rdfs:comment "Anteil der 35-44-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 35-44"@en ; rdfs:label "Anteil 35-44-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_35-44_years rdfs:subPropertyOf :proportion_of_population_aged_35-44_years . :population_on_the_1st_of_january_35-44_years_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 35-44 total"@en ; rdfs:comment "Bevölkerung 35-44-Jährige gesamt"@de ; rdfs:label "Population 35-44"@en ; rdfs:label "Bevölkerung 35-44"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_35-44_years_total rdfs:subPropertyOf :population_on_the_1st_of_january_35-44_years_total . :population_on_the_1st_of_january_35-44_years_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 35-44 male"@en ; rdfs:comment "Bevölkerung 35-44-Jährige männlich"@de ; rdfs:label "Population 35-44 male"@en ; rdfs:label "Bevölkerung 35-44 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_35-44_years_male rdfs:subPropertyOf :population_on_the_1st_of_january_35-44_years_male . :population_on_the_1st_of_january_35-44_years_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 35-44 female"@en ; rdfs:comment "Bevölkerung 35-44-Jährige weiblich"@de ; rdfs:label "Population 35-44 female"@en ; rdfs:label "Bevölkerung 35-44 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_35-44_years_female rdfs:subPropertyOf :population_on_the_1st_of_january_35-44_years_female . :proportion_of_population_aged_45-54_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 45-54"@en ; rdfs:comment "Anteil der 45-54-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 45-54"@en ; rdfs:label "Anteil 45-54-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_45-54_years rdfs:subPropertyOf :proportion_of_population_aged_45-54_years . :population_on_the_1st_of_january_45-54_years_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 45-54 total"@en ; rdfs:comment "Bevölkerung 45-54-Jährige gesamt"@de ; rdfs:label "Population 45-54"@en ; rdfs:label "Bevölkerung 45-54"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_45-54_years_total rdfs:subPropertyOf :population_on_the_1st_of_january_45-54_years_total . :population_on_the_1st_of_january_45-54_years_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 45-54 male"@en ; rdfs:comment "Bevölkerung 45-54-Jährige männlich"@de ; rdfs:label "Population 45-54 male"@en ; rdfs:label "Bevölkerung 45-54 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_45-54_years_male rdfs:subPropertyOf :population_on_the_1st_of_january_45-54_years_male . :population_on_the_1st_of_january_45-54_years_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 45-54 female"@en ; rdfs:comment "Bevölkerung 45-54-Jährige weiblich"@de ; rdfs:label "Population 45-54 female"@en ; rdfs:label "Bevölkerung 45-54 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_45-54_years_female rdfs:subPropertyOf :population_on_the_1st_of_january_45-54_years_female . :proportion_of_total_population_aged_55-64 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 55-64"@en ; rdfs:comment "Anteil der 55-64-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 55-64"@en ; rdfs:label "Anteil 55-64-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_total_population_aged_55-64 rdfs:subPropertyOf :proportion_of_total_population_aged_55-64 . :population_on_the_1st_of_january_55-64_years_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 55-64 total"@en ; rdfs:comment "Bevölkerung 55-64-Jährige gesamt"@de ; rdfs:label "Population 55-64"@en ; rdfs:label "Bevölkerung 55-64"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_55-64_years_total rdfs:subPropertyOf :population_on_the_1st_of_january_55-64_years_total . :population_on_the_1st_of_january_55-64_years_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 55-64 male"@en ; rdfs:comment "Bevölkerung 55-64-Jährige männlich"@de ; rdfs:label "Population 55-64 male"@en ; rdfs:label "Bevölkerung 55-64 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_55-64_years_male rdfs:subPropertyOf :population_on_the_1st_of_january_55-64_years_male . :population_on_the_1st_of_january_55-64_years_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 55-64 female"@en ; rdfs:comment "Bevölkerung 55-64-Jährige weiblich"@de ; rdfs:label "Population 55-64 female"@en ; rdfs:label "Bevölkerung 55-64 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_55-64_years_female rdfs:subPropertyOf :population_on_the_1st_of_january_55-64_years_female . :proportion_of_population_aged_65-74_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 65-74"@en ; rdfs:comment "Anteil der 65-74-Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 65-74"@en ; rdfs:label "Anteil 65-74-Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_65-74_years rdfs:subPropertyOf :proportion_of_population_aged_65-74_years . :population_on_the_1st_of_january_65-74_years_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 65-74 total"@en ; rdfs:comment "Bevölkerung 65-74-Jährige gesamt"@de ; rdfs:label "Population 65-74"@en ; rdfs:label "Bevölkerung 65-74"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_65-74_years_total rdfs:subPropertyOf :population_on_the_1st_of_january_65-74_years_total . :population_on_the_1st_of_january_65-74_years_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 65-74 male"@en ; rdfs:comment "Bevölkerung 65-74-Jährige männlich"@de ; rdfs:label "Population 65-74 male"@en ; rdfs:label "Bevölkerung 65-74 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_65-74_years_male rdfs:subPropertyOf :population_on_the_1st_of_january_65-74_years_male . :population_on_the_1st_of_january_65-74_years_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 65-74 female"@en ; rdfs:comment "Bevölkerung 65-74-Jährige weiblich"@de ; rdfs:label "Population 65-74 female"@en ; rdfs:label "Bevölkerung 65-74 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_65-74_years_female rdfs:subPropertyOf :population_on_the_1st_of_january_65-74_years_female . :proportion_of_population_aged_75_years__and_over a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of total population aged 75 and over"@en ; rdfs:comment "Anteil der 75+ Jährigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion aged 75+"@en ; rdfs:label "Anteil 75+ Jährige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_population_aged_75_years__and_over rdfs:subPropertyOf :proportion_of_population_aged_75_years__and_over . :population_75_years_and_over a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 75 and over total"@en ; rdfs:comment "Bevölkerung 75+ Jährige gesamt"@de ; rdfs:label "Population 75+"@en ; rdfs:label "Bevölkerung 75+"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_75_years_and_over_total rdfs:subPropertyOf :population_75_years_and_over . un:population_age_75_plus rdfs:subPropertyOf :population_75_years_and_over . :population_75_years_and_over_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 75 and over male"@en ; rdfs:comment "Bevölkerung 75+ Jährige männlich"@de ; rdfs:label "Population 75+ male"@en ; rdfs:label "Bevölkerung 75+ männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_75_years_and_over_male rdfs:subPropertyOf :population_75_years_and_over_male . un:population_male_age_75_plus rdfs:subPropertyOf :population_75_years_and_over_male . :population_75_years_and_over_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population aged 75 and over female"@en ; rdfs:comment "Bevölkerung 75+ Jährige weiblich"@de ; rdfs:label "Population 75+ female"@en ; rdfs:label "Bevölkerung 75+ weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_on_the_1st_of_january_75_years_and_over_female rdfs:subPropertyOf :population_75_years_and_over_female . un:population_female_age_75_plus rdfs:subPropertyOf :population_75_years_and_over_female . :median_population_age a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "years" ; rdfs:comment "Median Population Age"@en ; rdfs:comment "Median-Alter der Gesamtbevölkerung"@de ; rdfs:label "Median Age"@en ; rdfs:label "Median-Alter"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:median_population_age rdfs:subPropertyOf :median_population_age . :population_change_over_1_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Population change over 1 year"@en ; rdfs:comment "Bevölkerungsveränderung über 1 Jahr"@de ; rdfs:label "Population change"@en ; rdfs:label "Bevölkerungsveränderung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:population_change_over_1_year rdfs:subPropertyOf :population_change_over_1_year . :women_per_100_men a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of Women per 100 Men"@en ; rdfs:comment "Anzahl der Frauen pro 100 Männer"@de ; rdfs:label "Women per 100 Men"@en ; rdfs:label "Frauen pro 100 Männer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:women_per_100_men rdfs:subPropertyOf :women_per_100_men . :women_per_100_men_-_aged_75_years__and_over a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of Women per 100 Men aged 75 years and over"@en ; rdfs:comment "Anzahl der Frauen pro 100 Männer (75+ Jährige)"@de ; rdfs:label "Women per 100 Men 75+"@en ; rdfs:label "Frauen pro 100 Männer (75+ Jährige)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:women_per_100_men_-_aged_75_years__and_over rdfs:subPropertyOf :women_per_100_men_-_aged_75_years__and_over . :age_dependency_ratio_population_aged_0-19_and_65_and_more_to_population_aged_20-64 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Age Dependency Ratio (Population aged 0-19 and Population aged 65+ to population aged 20-64)"@en ; rdfs:comment "Altersabhängigkeitsquotient (Verhältnis Bevölkerung 0-19 Jahre und 65+ Jahre zu Bevölkerung 20-64 Jahre)"@de ; rdfs:label "Age Dependency Ratio"@en ; rdfs:label "Altersabhängigkeitsquotient"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:age_dependency_ratio_population_aged_0-19_and_65_and_more_to_population_aged_20-64 rdfs:subPropertyOf :age_dependency_ratio_population_aged_0-19_and_65_and_more_to_population_aged_20-64 . :young-age_dependency_ratio_population_aged_0-19_to_population_20-64_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Young Age Dependency Ratio (Population aged 0-19 to population aged 20-64)"@en ; rdfs:comment "Altersabhängigkeitsquotient (Junge) (Verhältnis Bevölkerung 0-19 Jahre zu Bevölkerung 20-64 Jahre)"@de ; rdfs:label "Young Age Dependency Ratio"@en ; rdfs:label "Altersabhängigkeitsquotient (Junge)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:young-age_dependency_ratio_population_aged_0-19_to_population_20-64_years rdfs:subPropertyOf :young-age_dependency_ratio_population_aged_0-19_to_population_20-64_years . :old_age_dependency_ratio_population_65_and_over_to_population_20_to_64_years a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Old Age Dependency Ratio (Population aged 65+ to population aged 20-64)"@en ; rdfs:comment "Altersabhängigkeitsquotient (Alte) (Verhältnis Bevölkerung 65+ Jahre zu Bevölkerung 20-64 Jahre)"@de ; rdfs:label "Old Age Dependency Ratio"@en ; rdfs:label "Altersabhängigkeitsquotient (Alte)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:old_age_dependency_ratio_population_65_and_over_to_population_20_to_64_years rdfs:subPropertyOf :old_age_dependency_ratio_population_65_and_over_to_population_20_to_64_years . :nationals_as_a_proportion_of_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Nationals as a proportion of the total population"@en ; rdfs:comment "Anteil der Staatsangehörigen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion Nationals"@en ; rdfs:label "Anteil Staatsangehöriger"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:nationals_as_a_proportion_of_population rdfs:subPropertyOf :nationals_as_a_proportion_of_population . :nationals a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Nationals total"@en ; rdfs:comment "Staatsangehörige gesamt"@de ; rdfs:label "Nationals"@en ; rdfs:label "Staatsangehörige"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:nationals rdfs:subPropertyOf :nationals . un:nationals rdfs:subPropertyOf :nationals . :eu_foreigners_as_a_proportion_of_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "EU Foreigners as a proportion of the total population"@en ; rdfs:comment "Anteil der EU-Ausländer an der Gesamtbevölkerung"@de ; rdfs:label "Proportion EU Foreigners"@en ; rdfs:label "Anteil EU-Ausländer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:eu_foreigners_as_a_proportion_of_population rdfs:subPropertyOf :eu_foreigners_as_a_proportion_of_population . :eu_foreigners a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "EU Foreigners total"@en ; rdfs:comment "EU-Ausländer gesamt"@de ; rdfs:label "EU Foreigners"@en ; rdfs:label "EU-Ausländer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:eu_foreigners rdfs:subPropertyOf :eu_foreigners . :non-eu_foreigners_as_a_proportion_of_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Non-EU Foreigners as a proportion of population"@en ; rdfs:comment "Anteil der Nicht-EU-Ausländer an der Gesamtbevölkerung"@de ; rdfs:label "Proportion Non-EU Foreigners"@en ; rdfs:label "Anteil Nicht-EU-Ausländer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:non-eu_foreigners_as_a_proportion_of_population rdfs:subPropertyOf :non-eu_foreigners_as_a_proportion_of_population . :non-eu_foreigners a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Non-EU Foreigners total"@en ; rdfs:comment "Nicht-EU-Ausländer gesamt"@de ; rdfs:label "Non-EU Foreigners"@en ; rdfs:label "Nicht-EU-Ausländer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:non-eu_foreigners rdfs:subPropertyOf :non-eu_foreigners . :foreigners_as_a_proportion_of_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Foreigners as a proportion of population"@en ; rdfs:comment "Anteil der Ausländer an der Gesamtbevölkerung"@de ; rdfs:label "Proportion Foreigners"@en ; rdfs:label "Anteil Ausländer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . rdfs:subPropertyOf :foreigners_as_a_proportion_of_population . urbanaudit:foreigners_as_a_proportion_of_population rdfs:subPropertyOf :foreigners_as_a_proportion_of_population . :native-born_as_a_proportion_of_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Native-borns as a proportion of population"@en ; rdfs:comment "Anteil der im Inland Geborenen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion native-borns"@en ; rdfs:label "Anteil im Inland Geborene"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:native-born_as_a_proportion_of_population rdfs:subPropertyOf :native-born_as_a_proportion_of_population . :native-born a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Native-borns total"@en ; rdfs:comment "Im Inland Geborene gesamt"@de ; rdfs:label "Native-borns"@en ; rdfs:label "Im Inland Geborene"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:native-born rdfs:subPropertyOf :native-born . :foreign-born_as_a_proportion_of_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Foreign-borns as a proportion of population"@en ; rdfs:comment "Anteil der im Ausland Geborenen an der Gesamtbevölkerung"@de ; rdfs:label "Proportion foreign-borns"@en ; rdfs:label "Anteil im Ausland Geborene"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:foreign-born_as_a_proportion_of_population rdfs:subPropertyOf :foreign-born_as_a_proportion_of_population . :foreign-born a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Foreign-borns total"@en ; rdfs:comment "Im Ausland Geborene gesamt"@de ; rdfs:label "Foreign-borns"@en ; rdfs:label "Im Ausland Geborene"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:foreign-born rdfs:subPropertyOf :foreign-born . :foreign-born_in_a_eu_country a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Foreign-borns (in a EU country) total"@en ; rdfs:comment "Im Ausland (in EU) Geborene gesamt"@de ; rdfs:label "Foreign-borns (in a EU country)"@en ; rdfs:label "Im Ausland (in EU) Geborene"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:foreign-born_in_a_eu_country rdfs:subPropertyOf :foreign-born_in_a_eu_country . :foreign-born_in_a_non-eu_country a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Foreign-borns (outside EU) total"@en ; rdfs:comment "Im Ausland (außerhalb EU) Geborene gesamt"@de ; rdfs:label "Foreign-borns (outside EU)"@en ; rdfs:label "Im Ausland (außerhalb EU) Geborene"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:foreign-born_in_a_non-eu_country rdfs:subPropertyOf :foreign-born_in_a_non-eu_country . :foreigners a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Foreigners total"@en ; rdfs:comment "Ausländer gesamt"@de ; rdfs:label "Foreigners"@en ; rdfs:label "Ausländer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:foreigners rdfs:subPropertyOf :foreigners . :private_households_excluding_institutional_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Private households (excluding institutional households)"@en ; rdfs:comment "Private Haushalte (exklusive institutionelle Haushalte)"@de ; rdfs:label "Private households"@en ; rdfs:label "Private Haushalte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:private_households_excluding_institutional_households rdfs:subPropertyOf :private_households_excluding_institutional_households . :proportion_of_households_that_are_1-person_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of 1-person households"@en ; rdfs:comment "Anteil der 1-Personen-Haushalte"@de ; rdfs:label "Proportion 1-person households"@en ; rdfs:label "Anteil 1-Personen-Haushalte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_households_that_are_1-person_households rdfs:subPropertyOf :proportion_of_households_that_are_1-person_households . :one_person_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "1-person households total"@en ; rdfs:comment "1-Personen-Haushalte gesamt"@de ; rdfs:label "1-person households"@en ; rdfs:label "1-Personen-Haushalte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:one_person_households rdfs:subPropertyOf :one_person_households . :average_size_of_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Average size of households (number of persons)"@en ; rdfs:comment "Durchschnittliche Größe eines Haushaltes (Anzahl Personen)"@de ; rdfs:label "Avg household-size"@en ; rdfs:label "Durchschnittliche Haushalts-Größe"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:average_size_of_households rdfs:subPropertyOf :average_size_of_households . :proportion_of_households_that_are_lone-parent_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households that are lone-parent households"@en ; rdfs:comment "Anteil der Alleinerzieher-Haushalte"@de ; rdfs:label "Proportion lone-parent households"@en ; rdfs:label "Anteil Alleinerzieher-Haushalte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_households_that_are_lone-parent_households rdfs:subPropertyOf :proportion_of_households_that_are_lone-parent_households . :lone_parent_private_households_with_children_aged_0_to_under_18 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Lone parent private households with children aged 0-17 total"@en ; rdfs:comment "Alleinerzieher-Haushalte mit Kindern im Alter von 0-17 Jahren gesamt"@de ; rdfs:label "Lone parent households with children 0-17"@en ; rdfs:label "Alleinerzieher-Haushalte mit Kindern 0-17"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:lone_parent_private_households_with_children_aged_0_to_under_18 rdfs:subPropertyOf :lone_parent_private_households_with_children_aged_0_to_under_18 . :proportion_households_that_are_lone-pensioner_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households that are lone-pensioner households"@en ; rdfs:comment "Anteil der Haushalte mit einzelnen Pensionisten"@de ; rdfs:label "Proportion lone-pensioner households"@en ; rdfs:label "Anteil Haushalte mit einzelnen Pensionisten"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_households_that_are_lone-pensioner_households rdfs:subPropertyOf :proportion_households_that_are_lone-pensioner_households . :lone_pensioner_above_retirement_age_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Households with lone-pensioners above retirement age"@en ; rdfs:comment "Haushalte mit einzelnen Pensionisten über Pensionsalter"@de ; rdfs:label "Lone-pensioners households above retirement age"@en ; rdfs:label "Haushalte einzelne Pensionisten über Pensionsalter"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:lone_pensioner_above_retirement_age_households rdfs:subPropertyOf :lone_pensioner_above_retirement_age_households . :proportion_of_households_with_children_aged_0-17 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households with children aged 0-17"@en ; rdfs:comment "Anteil der Haushalte mit Kindern im Alter von 0-17 Jahren"@de ; rdfs:label "Proportion households with children 0-17"@en ; rdfs:label "Anteil Haushalte mit Kindern 0-17"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:proportion_of_households_with_children_aged_0-17 rdfs:subPropertyOf :proportion_of_households_with_children_aged_0-17 . :households_with_children_aged_0_to_under_18 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Households with children aged 0-17 total"@en ; rdfs:comment "Haushalte mit Kindern im Alter von 0-17 Jahren gesamt"@de ; rdfs:label "Households with children 0-17"@en ; rdfs:label "Haushalte mit Kindern 0-17"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:households_with_children_aged_0_to_under_18 rdfs:subPropertyOf :households_with_children_aged_0_to_under_18 . :lone_parent_households_per_100_households_with_children_aged_0-17 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households with children aged 0-17"@en ; rdfs:comment "Anteil der Haushalte mit Kindern im Alter von 0-17 Jahren"@de ; rdfs:label "Proportion households with children 0-17"@en ; rdfs:label "Anteil Haushalte mit Kindern 0-17"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:lone_parent_households_per_100_households_with_children_aged_0-17 rdfs:subPropertyOf :lone_parent_households_per_100_households_with_children_aged_0-17 . :population_living_in_private_households_excluding_institutional_households a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Population living in private households (excluding institutional households)"@en ; rdfs:comment "In privaten Haushalten lebende Personen (exklusive institutionelle Haushalte)"@de ; rdfs:label "Population in private households"@en ; rdfs:label "Bevölkerung in privaten Haushalten"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Demography . urbanaudit:population_living_in_private_households_excluding_institutional_households rdfs:subPropertyOf :population_living_in_private_households_excluding_institutional_households . :populationDensity a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons/km2" ; rdfs:comment "Population density (persons per square kilometer)"@en ; rdfs:comment "Bevölkerungsdichte (Personen pro Quadratkilometer)"@de ; rdfs:label "Population density"@en ; rdfs:label "Bevölkerungsdichte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Demography . urbanaudit:population_density_total_resident_pop_per_square_km rdfs:subPropertyOf :populationDensity . dbpedia-owl:populationDensity rdfs:subPropertyOf :populationDensity . rdfs:subPropertyOf :populationDensity . rdfs:subPropertyOf :populationDensity . rdfs:subPropertyOf :populationDensity . ############################################# # CULTURE AND RECREATION INDICATORS :no_cinema_seats_per_1000_residents a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of cinema seats per 1000 residents"@en ; rdfs:comment "Anzahl der Kinositzplätze pro 1000 Einwohner"@de ; rdfs:label "Cinema Seats per 1000"@en ; rdfs:label "Kinositzplätze pro 1000"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :CultureAndRecreation . urbanaudit:no_cinema_seats_per_1000_residents rdfs:subPropertyOf :no_cinema_seats_per_1000_residents . :no_cinema_seats_total_capacity a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of cinema seats"@en ; rdfs:comment "Anzahl der Kinositzplätze"@de ; rdfs:label "Cinema Seats"@en ; rdfs:label "Kinositzplätze"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_cinema_seats_total_capacity rdfs:subPropertyOf :no_cinema_seats_total_capacity . :cinema_attendance_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Cinema Attendance per Year"@en ; rdfs:comment "Kinobesucher pro Jahr"@de ; rdfs:label "Cinema Attendance"@en ; rdfs:label "Kinobesucher"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:cinema_attendance_per_year rdfs:subPropertyOf :cinema_attendance_per_year . :no_museum_visitors_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of museum visitors per year"@en ; rdfs:comment "Anzahl der Museumsbesucher pro Jahr"@de ; rdfs:label "Number of museum visitors"@en ; rdfs:label "Anzahl der Museumsbesucher"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_museum_visitors_per_year rdfs:subPropertyOf :no_museum_visitors_per_year . :no_theatres a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of theatres"@en ; rdfs:comment "Anzahl der Theater"@de ; rdfs:label "Theatres"@en ; rdfs:label "Theater"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_theatres rdfs:subPropertyOf :no_theatres . :no_public_libraries_all_distribution_points a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of public libraries"@en ; rdfs:comment "Anzahl der öffentlichen Bibliotheken"@de ; rdfs:label "Public Libraries"@en ; rdfs:label "Öffentliche Bibliotheken"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_public_libraries_all_distribution_points rdfs:subPropertyOf :no_public_libraries_all_distribution_points . :no_public_swimming_pools_indoor_and_outdoor_excluding_beaches a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of public swimming pools (indoor and outdoor)"@en ; rdfs:comment "Anzahl der öffentlichen Swimming-Pools (innen und außen)"@de ; rdfs:label "Public Swimming Pools"@en ; rdfs:label "Öffentliche Swimming-Pools"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_public_swimming_pools_indoor_and_outdoor_excluding_beaches rdfs:subPropertyOf :no_public_swimming_pools_indoor_and_outdoor_excluding_beaches . :total_nights_spent_in_tourist_accommodation_establishments a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total nights spent in tourist accomodation establishments"@en ; rdfs:comment "Anzahl der Übernachtungen in Touristen-Unterkünften"@de ; rdfs:label "Tourist Nights Spent"@en ; rdfs:label "Touristen-Übernachtungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:total_nights_spent_in_tourist_accommodation_establishments rdfs:subPropertyOf :total_nights_spent_in_tourist_accommodation_establishments . :no_air_passengers_using_nearest_airport a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of air passengers using nearest airport"@en ; rdfs:comment "Anzahl der Flug-Passagiere am nähesten Flughafen"@de ; rdfs:label "Air Passengers"@en ; rdfs:label "Flug-Passagiere"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_air_passengers_using_nearest_airport rdfs:subPropertyOf :no_air_passengers_using_nearest_airport . :no_air_passengers_using_nearest_airport_total_arrivals a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of air passenger arrivals using nearest airport"@en ; rdfs:comment "Anzahl der ankommenden Flug-Passagiere am nähesten Flughafen"@de ; rdfs:label "Air-Travel arrivals"@en ; rdfs:label "Ankommende Flug-Passagiere"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_air_passengers_using_nearest_airport_total_arrivals rdfs:subPropertyOf :no_air_passengers_using_nearest_airport_total_arrivals . :no_air_passengers_using_nearest_airport_domestic_arrivals a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of domestic air passenger arrivals using nearest airport"@en ; rdfs:comment "Anzahl der ankommenden Inlands-Flug-Passagiere am nähesten Flughafen"@de ; rdfs:label "Air-Travel domestic arrivals"@en ; rdfs:label "Ankommende Inlands-Flug-Passagiere"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_air_passengers_using_nearest_airport_domestic_arrivals rdfs:subPropertyOf :no_air_passengers_using_nearest_airport_domestic_arrivals . :no_air_passengers_using_nearest_airport_total_departures a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of air passenger departures using nearest airport"@en ; rdfs:comment "Anzahl der abfliegenden Flug-Passagiere am nähesten Flughafen"@de ; rdfs:label "Air-Travel departures"@en ; rdfs:label "Abfliegende Flug-Passagiere"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_air_passengers_using_nearest_airport_total_departures rdfs:subPropertyOf :no_air_passengers_using_nearest_airport_total_departures . :no_air_passengers_using_nearest_airport_domestic_departures a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of domestic air passenger departures using nearest airport"@en ; rdfs:comment "Anzahl der abfliegenden Inlands-Flug-Passagiere am nähesten Flughafen"@de ; rdfs:label "Air-Travel domestic departures"@en ; rdfs:label "Abfliegende Inlands-Flug-Passagiere"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_air_passengers_using_nearest_airport_domestic_departures rdfs:subPropertyOf :no_air_passengers_using_nearest_airport_domestic_departures . :no_bed-places_in_tourist__accommodation_establishments a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of bed-places in tourist accomodation establishments"@en ; rdfs:comment "Anzahl der Touristen-Unterkünfte"@de ; rdfs:label "Tourist Bed-Places"@en ; rdfs:label "Touristen-Unterkünfte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :CultureAndRecreation . urbanaudit:no_bed-places_in_tourist__accommodation_establishments rdfs:subPropertyOf :no_bed-places_in_tourist__accommodation_establishments . :no_available_beds_per_1000_residents a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no"; rdfs:comment "Number of available beds per 1000 residents"@en ; rdfs:comment "Anzahl der verfügbaren Betten pro 1000 Einwohner"@de ; rdfs:label "Available beds per 1000"@en ; rdfs:label "Verfügbare Betten pro 1000"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :CultureAndRecreation . urbanaudit:no_available_beds_per_1000_residents rdfs:subPropertyOf :no_available_beds_per_1000_residents . :no_tourist_overnight_stays_in_reg_accommodation_per_year_per_resident_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of tourist overnight stays per year per resident"@en ; rdfs:comment "Anzahl der Touristen-Übernachtungen pro Jahr pro Einwohner"@de ; rdfs:label "Tourist overnight stays per resident"@en ; rdfs:label "Touristen-Übernachtungen pro Einwohner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :CultureAndRecreation . urbanaudit:no_tourist_overnight_stays_in_reg_accommodation_per_year_per_resident_population rdfs:subPropertyOf :no_tourist_overnight_stays_in_reg_accommodation_per_year_per_resident_population . ############################################# # ECONOMIC ASPECTS INDICATORS :economically_active_population_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population total"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung gesamt"@de ; rdfs:label "Economically Active Population"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_total rdfs:subPropertyOf :economically_active_population_total . :economically_active_population_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population male"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung männlich"@de ; rdfs:label "Economically Active Population male"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_male rdfs:subPropertyOf :economically_active_population_male . :economically_active_population_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population female"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung weiblich"@de ; rdfs:label "Economically Active Population female"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_female rdfs:subPropertyOf :economically_active_population_female . :activity_rate a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Activity Rate (Proportion of economically active people)"@en ; rdfs:comment "Aktivitätsrate (Anteil wirtschaftlich aktive Menschen an Gesamtbevölkerung)"@de ; rdfs:label "Activity Rate"@en ; rdfs:label "Aktivitätsrate"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:activity_rate rdfs:subPropertyOf :activity_rate . :activity_rate_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Activity Rate male (Proportion of economically active male people)"@en ; rdfs:comment "Aktivitätsrate (Anteil wirtschaftlich aktive männliche Menschen an Gesamtbevölkerung)"@de ; rdfs:label "Activity Rate male"@en ; rdfs:label "Aktivitätsrate männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:activity_rate_male rdfs:subPropertyOf :activity_rate_male . :activity_rate_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Activity Rate male (Proportion of economically active female people)"@en ; rdfs:comment "Aktivitätsrate (Anteil wirtschaftlich aktive weibliche Menschen an Gesamtbevölkerung)"@de ; rdfs:label "Activity Rate female"@en ; rdfs:label "Aktivitätsrate weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:activity_rate_female rdfs:subPropertyOf :activity_rate_female . :persons_unemployed_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of unemployed persons total"@en ; rdfs:comment "Anzahl der Arbeitslosen gesamt"@de ; rdfs:label "Unemployed Persons"@en ; rdfs:label "Arbeitslose"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_unemployed_total rdfs:subPropertyOf :persons_unemployed_total . :persons_unemployed_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of unemployed persons male"@en ; rdfs:comment "Anzahl der Arbeitslosen männlich"@de ; rdfs:label "Unemployed Persons male"@en ; rdfs:label "Arbeitslose männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_unemployed_male rdfs:subPropertyOf :persons_unemployed_male . :persons_unemployed_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of unemployed persons female"@en ; rdfs:comment "Anzahl der Arbeitslosen weiblich"@de ; rdfs:label "Unemployed Persons female"@en ; rdfs:label "Arbeitslose weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_unemployed_female rdfs:subPropertyOf :persons_unemployed_female . :unemployment_rate a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Unemployment Rate"@en ; rdfs:comment "Arbeitslosenrate"@de ; rdfs:label "Unemployment Rate"@en ; rdfs:label "Arbeitslosenrate"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:unemployment_rate rdfs:subPropertyOf :unemployment_rate . rdfs:subPropertyOf :unemployment_rate . wb:unemployment_total_percent_of_total_labor_force_modeled_ilo_estimate rdfs:subPropertyOf :unemployment_rate . :unemployment_rate_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Unemployment rate male"@en ; rdfs:comment "Arbeitslosenrate männlich"@de ; rdfs:label "Unemployment rate male"@en ; rdfs:label "Arbeitslosenrate männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:unemployment_rate_male rdfs:subPropertyOf :unemployment_rate_male . wb:unemployment_male_percent_of_male_labor_force_modeled_ilo_estimate rdfs:subPropertyOf :unemployment_rate_male . :unemployment_rate_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Unemployment rate female"@en ; rdfs:comment "Arbeitslosenrate weiblich"@de ; rdfs:label "Unemployment rate female"@en ; rdfs:label "Arbeitslosenrate weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:unemployment_rate_female rdfs:subPropertyOf :unemployment_rate_female . wb:unemployment_female_percent_of_female_labor_force_modeled_ilo_estimate rdfs:subPropertyOf :unemployment_rate_female . :economically_active_population_55-64_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population 55-64 years total"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung 55-64 Jahre gesamt"@de ; rdfs:label "Economically Active Population 55-64"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung 55-64"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_55-64_total rdfs:subPropertyOf :economically_active_population_55-64_total . :economically_active_population_55-64_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population 55-64 years male"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung 55-64 Jahre männlich"@de ; rdfs:label "Economically Active Population 55-64 male"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung 55-64 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_55-64_male rdfs:subPropertyOf :economically_active_population_55-64_male . :economically_active_population_55-64_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population 55-64 years female"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung 55-64 Jahre weiblich"@de ; rdfs:label "Economically Active Population 55-64 female"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung 55-64 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_55-64_female rdfs:subPropertyOf :economically_active_population_55-64_female . :economically_active_population_20-64_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population 20-64 years total"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung 20-64 Jahre gesamt"@de ; rdfs:label "Economically Active Population 20-64"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung 20-64"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_20-64_total rdfs:subPropertyOf :economically_active_population_20-64_total . :economically_active_population_20-64_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population 20-64 years male"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung 20-64 Jahre männlich"@de ; rdfs:label "Economically Active Population 20-64 male"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung 20-64 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_20-64_male rdfs:subPropertyOf :economically_active_population_20-64_male . :economically_active_population_20-64_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Economically Active Population 20-64 years female"@en ; rdfs:comment "Wirtschaftlich aktive Bevölkerung 20-64 Jahre weiblich"@de ; rdfs:label "Economically Active Population 20-64 female"@en ; rdfs:label "Wirtschaftlich aktive Bevölkerung 20-64 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:economically_active_population_20-64_female rdfs:subPropertyOf :economically_active_population_20-64_female . :persons_employed_20-64_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Employed persons aged 20-64 years total"@en ; rdfs:comment "Erwerbstätige Personen im Alter von 20-64 gesamt"@de ; rdfs:label "Employed persons 20-64"@en ; rdfs:label "Erwerbstätige 20-64"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_employed_20-64_total rdfs:subPropertyOf :persons_employed_20-64_total . :persons_employed_20-64_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Employed persons aged 20-64 years male"@en ; rdfs:comment "Erwerbstätige Personen im Alter von 20-64 männlich"@de ; rdfs:label "Employed persons 20-64 male"@en ; rdfs:label "Erwerbstätige 20-64 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_employed_20-64_male rdfs:subPropertyOf :persons_employed_20-64_male . :persons_employed_20-64_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Employed persons aged 20-64 years female"@en ; rdfs:comment "Erwerbstätige Personen im Alter von 20-64 weiblich"@de ; rdfs:label "Employed persons 20-64 female"@en ; rdfs:label "Erwerbstätige 20-64 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_employed_20-64_female rdfs:subPropertyOf :persons_employed_20-64_female . :persons_employed_55-64_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Employed persons aged 55-64 years total"@en ; rdfs:comment "Erwerbstätige Personen im Alter von 55-64 gesamt"@de ; rdfs:label "Employed persons 55-64"@en ; rdfs:label "Erwerbstätige 55-64"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_employed_55-64_total rdfs:subPropertyOf :persons_employed_55-64_total . :persons_employed_55-64_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Employed persons aged 55-64 years male"@en ; rdfs:comment "Erwerbstätige Personen im Alter von 55-64 männlich"@de ; rdfs:label "Employed persons 55-64 male"@en ; rdfs:label "Erwerbstätige 55-64 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_employed_55-64_male rdfs:subPropertyOf :persons_employed_55-64_male . :persons_employed_55-64_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Employed persons aged 55-64 years female"@en ; rdfs:comment "Erwerbstätige Personen im Alter von 55-64 weiblich"@de ; rdfs:label "Employed persons 55-64 female"@en ; rdfs:label "Erwerbstätige 55-64 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_employed_55-64_female rdfs:subPropertyOf :persons_employed_55-64_female . :proportion_of_employment_in_agriculture_fishery a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of employment in agriculture and fishery"@en ; rdfs:comment "Anteil der in Landwirtschaft und Fischerei Tätigen"@de ; rdfs:label "Employment proportion agriculture and fishery"@en ; rdfs:label "Anteil Erwerbstätige Landwirtschaft und Fischerei"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:proportion_of_employment_in_agriculture_fishery rdfs:subPropertyOf :proportion_of_employment_in_agriculture_fishery . :employment_jobs_in_agriculture_fishery_nace_rev_2_a a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in agriculture and fishery (NACE Rev. 2: A)"@en ; rdfs:comment "Anzahl Jobs in Landwirtschaft und Fischerei (NACE Rev. 2: A)"@de ; rdfs:label "Jobs in agriculture and fishery"@en ; rdfs:label "Jobs in Landwirtschaft und Fischerei"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_agriculture_fishery_nace_rev_2_a rdfs:subPropertyOf :employment_jobs_in_agriculture_fishery_nace_rev_2_a . :proportion_of_employment_in_industries_nace_rev11_c-e a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of employment in industries (NACE Rev.1.1 C-E)"@en ; rdfs:comment "Anteil der in der Industrie Tätigen (NACE Rev.1.1 C-E)"@de ; rdfs:label "Employment proportion industries"@en ; rdfs:label "Anteil Erwerbstätige Industrie"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:proportion_of_employment_in_industries_nace_rev11_c-e rdfs:subPropertyOf :proportion_of_employment_in_industries_nace_rev11_c-e . :employment_jobs_in_mining_manufacturing_energy_nace_rev_2_b-e a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in mining manufacturing energy (NACE Rev. 2: B-E)"@en ; rdfs:comment "Anzahl Jobs in Bergbau Produktion Energie (NACE Rev. 2: B-E)"@de ; rdfs:label "Jobs in mining manufacturing energy"@en ; rdfs:label "Jobs in Bergbau Produktion Energie"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_mining_manufacturing_energy_nace_rev_2_b-e rdfs:subPropertyOf :employment_jobs_in_mining_manufacturing_energy_nace_rev_2_b-e . :proportion_of_employment_in_construction_nace_rev11_f a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of employment in construction (NACE Rev. 2: F)"@en ; rdfs:comment "Anteil der im Bau Tätigen (NACE Rev. 2: F)"@de ; rdfs:label "Employment proportion construction"@en ; rdfs:label "Anteil Erwerbstätige Bau"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:proportion_of_employment_in_construction_nace_rev11_f rdfs:subPropertyOf :proportion_of_employment_in_construction_nace_rev11_f . :employment_jobs_in_construction_nace_rev_2_f a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in construction (NACE Rev. 2: F)"@en ; rdfs:comment "Anzahl Jobs Bau (NACE Rev. 2: F)"@de ; rdfs:label "Jobs in construction"@en ; rdfs:label "Jobs Bau"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_construction_nace_rev_2_f rdfs:subPropertyOf :employment_jobs_in_construction_nace_rev_2_f . :employment_jobs_in_trade_transport_hotels_restaurants_nace_rev_2_g_to_i a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in trade transport hotels restaraunts (NACE Rev. 2: G to I)"@en ; rdfs:comment "Anzahl Jobs in Handel Transport Hotels Restaurants (NACE Rev. 2: G to I)"@de ; rdfs:label "Jobs in trade transport hotels restaraunts"@en ; rdfs:label "Jobs in Handel Transport Hotels Restaurants"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_trade_transport_hotels_restaurants_nace_rev_2_g_to_i rdfs:subPropertyOf :employment_jobs_in_trade_transport_hotels_restaurants_nace_rev_2_g_to_i . :employment_jobs_in_information_and_communication_nace_rev_2_j a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in information and communication (NACE Rev. 2: J)"@en ; rdfs:comment "Anzahl Jobs in Informations- und Kommunikationswirtschaft (NACE Rev. 2: J)"@de ; rdfs:label "Jobs in information and communication"@en ; rdfs:label "Jobs in Informations- und Kommunikationswirtschaft"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_information_and_communication_nace_rev_2_j rdfs:subPropertyOf :employment_jobs_in_information_and_communication_nace_rev_2_j . :employment_jobs_in_financial_and_insurance_activities_nace_rev_2_k a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in financial and insurance activities (NACE Rev. 2: K)"@en ; rdfs:comment "Anzahl Jobs in Finanz- und Versicherungswirtschaft (NACE Rev. 2: K)"@de ; rdfs:label "Jobs in financial and insurance activities"@en ; rdfs:label "Jobs in Finanz- und Versicherungswirtschaft"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_financial_and_insurance_activities_nace_rev_2_k rdfs:subPropertyOf :employment_jobs_in_financial_and_insurance_activities_nace_rev_2_k . :employment_jobs_in_real_estate_activities_nace_rev_2_l a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in real estate activities (NACE Rev. 2: L)"@en ; rdfs:comment "Anzahl Jobs in Immobilienwirtschaft (NACE Rev. 2: L)"@de ; rdfs:label "Jobs in real estate activities"@en ; rdfs:label "Jobs in Immobilienwirtschaft"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_real_estate_activities_nace_rev_2_l rdfs:subPropertyOf :employment_jobs_in_real_estate_activities_nace_rev_2_l . :employment_jobs_in_professional_scientific_and_technical_activities_administrative_and_support_service_activities_nace_rev_2_m_and_n a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in professional scientific, technical administrative and support service activities (NACE Rev. 2: M and N)"@en ; rdfs:comment "Anzahl Jobs in Wissenschaft Technik Administratives und Service (NACE Rev. 2: M and N)"@de ; rdfs:label "Jobs in professional scientific technical administrative and support service"@en ; rdfs:label "Jobs in Wissenschaft Technik Administratives und Service"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_professional_scientific_and_technical_activities_administrative_and_support_service_activities_nace_rev_2_m_and_n rdfs:subPropertyOf :employment_jobs_in_professional_scientific_and_technical_activities_administrative_and_support_service_activities_nace_rev_2_m_and_n . :employment_jobs_in_public_administration_defence_education_human_health_and_social_work_activities_nace_rev_2_o_to_q a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in public administration defence education health and social work (NACE Rev. 2: O to Q)"@en ; rdfs:comment "Anzahl Jobs in Öffentlicher Dienst Verteidigung Bildung Gesundheit Sozialarbeit (NACE Rev. 2: O to Q)"@de ; rdfs:label "Jobs in public administration defence education health and social work"@en ; rdfs:label "Jobs in Öffentlicher Dienst Verteidigung Bildung Gesundheit Sozialarbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_public_administration_defence_education_human_health_and_social_work_activities_nace_rev_2_o_to_q rdfs:subPropertyOf :employment_jobs_in_public_administration_defence_education_human_health_and_social_work_activities_nace_rev_2_o_to_q . :employment_jobs_in_arts_entertainment_and_recreation_other_service_activities_activities_of_household_and_extra-territorial_organizations_and_bodies_nace_rev_2_r_to_u a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Employment Jobs in arts entertainment and recreation household activites (NACE Rev. 2: R to U)"@en ; rdfs:comment "Anzahl Jobs in Kunst, Unterhaltung, Erholung, Haushalt (NACE Rev. 2: R to U)"@de ; rdfs:label "Jobs in arts entertainment and recreation household activites"@en ; rdfs:label "Jobs in Kunst, Unterhaltung, Erholung, Haushalt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:employment_jobs_in_arts_entertainment_and_recreation_other_service_activities_activities_of_household_and_extra-territorial_organizations_and_bodies_nace_rev_2_r_to_u rdfs:subPropertyOf :employment_jobs_in_arts_entertainment_and_recreation_other_service_activities_activities_of_household_and_extra-territorial_organizations_and_bodies_nace_rev_2_r_to_u . :total_employment_divided_by_jobs_work_place_based a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Employment divided by Jobs"@en ; rdfs:comment "Erwerbstätige bezogen auf Jobs"@de ; rdfs:label "Employment divided by Jobs"@en ; rdfs:label "Erwerbstätige bezogen auf Jobs"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:total_employment_divided_by_jobs_work_place_based rdfs:subPropertyOf :total_employment_divided_by_jobs_work_place_based . :all_companies a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of companies"@en ; rdfs:comment "Anzahl der Unternehmen"@de ; rdfs:label "No companies"@en ; rdfs:label "Anzahl Unternehmen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:all_companies rdfs:subPropertyOf :all_companies . :gdp_of_nuts-3_region_in_million_euro a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "m EUR" ; rdfs:comment "GDP of NUTS-3 region in million Euro"@en ; rdfs:comment "BIP der NUTS-3-Region in Millionen Euro"@de ; rdfs:label "GDP NUTS-3 (m EUR)"@en ; rdfs:label "BIP NUTS-3 (Mio EUR)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:gdp_of_nuts-3_region_in_million_euro rdfs:subPropertyOf :gdp_of_nuts-3_region_in_million_euro . :gdp_per_inhabitant_in_pps_of_nuts-3_region a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "GDP per inhabitant of NUTS-3 region"@en ; rdfs:comment "BIP pro Einwohner der NUTS-3-Region"@de ; rdfs:label "GDP/inhabitant NUTS-3"@en ; rdfs:label "BIP/Einwohner NUTS-3"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:gdp_per_inhabitant_in_pps_of_nuts-3_region rdfs:subPropertyOf :gdp_per_inhabitant_in_pps_of_nuts-3_region . :median_disposable_annual_household_income a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Median disposable annual household income"@en ; rdfs:comment "Median des jährlich verfügbaren Haushaltseinkommens"@de ; rdfs:label "Household income (median)"@en ; rdfs:label "Haushaltseinkommen (Median)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:median_disposable_annual_household_income rdfs:subPropertyOf :median_disposable_annual_household_income . :average_disposable_annual_household_income a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Average disposable annual household income"@en ; rdfs:comment "Mittelwert des jährlich verfügbaren Haushaltseinkommens"@de ; rdfs:label "Household income (average)"@en ; rdfs:label "Haushaltseinkommen (Mittelwert)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :EconomicAspects . urbanaudit:average_disposable_annual_household_income rdfs:subPropertyOf :average_disposable_annual_household_income . :persons_living_in_households_with_very_low_work_intensity a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Persons living in households with very low work intensity"@en ; rdfs:comment "Personen in Haushalten mit sehr geringer Arbeitsintensität"@de ; rdfs:label "Persons in households with very low work intensity"@en ; rdfs:label "Personen in Haushalten mit sehr geringer Arbeitsintensität"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_living_in_households_with_very_low_work_intensity rdfs:subPropertyOf :persons_living_in_households_with_very_low_work_intensity . :persons_at_risk_of_poverty_after_social_transfers a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Persons at risk of poverty after social Transfers"@en ; rdfs:comment "Armutsgefährdete nach Sozialtransfers"@de ; rdfs:label "Persons at risk of poverty"@en ; rdfs:label "Armutsgefährdete"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_at_risk_of_poverty_after_social_transfers rdfs:subPropertyOf :persons_at_risk_of_poverty_after_social_transfers . :severely_materially_deprived_persons a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Severely materially deprived persons"@en ; rdfs:comment "Sozial Benachteiligte"@de ; rdfs:label "Materially deprived persons"@en ; rdfs:label "Sozial Benachteiligte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:severely_materially_deprived_persons rdfs:subPropertyOf :severely_materially_deprived_persons . :persons_at_risk_of_poverty_or_social_exclusion a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Persons at risk of poverty or social exclusion"@en ; rdfs:comment "Armuts- oder von sozialer Ausgrenzung gefährdete Personen"@de ; rdfs:label "Persons at risk of poverty social exclusion"@en ; rdfs:label "Armuts- oder von sozialer Ausgrenzung gefährdete Personen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :EconomicAspects . urbanaudit:persons_at_risk_of_poverty_or_social_exclusion rdfs:subPropertyOf :persons_at_risk_of_poverty_or_social_exclusion . ############################################# # ENVIRONMENT INDICATORS :total_no_hours_of_sunshine_per_day a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Number of hours of sunshine per day"@en ; rdfs:comment "Anzahl der Sonnenstunden pro Tag"@de ; rdfs:label "Hours of sunshine"@en ; rdfs:label "Sonnenstunden"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:total_no_hours_of_sunshine_per_day rdfs:subPropertyOf :total_no_hours_of_sunshine_per_day . :average_temperature_of_warmest_month a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "degrees celsius" ; rdfs:comment "Average temperature of warmest month"@en ; rdfs:comment "Durchschnittliche Temperatur im wärmsten Monat"@de ; rdfs:label "Temperature of warmest month"@en ; rdfs:label "Temperatur im wärmsten Monat"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:average_temperature_of_warmest_month rdfs:subPropertyOf :average_temperature_of_warmest_month . :average_temperature_of_coldest_month a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "degrees celsius" ; rdfs:comment "Average temperature of coldest month"@en ; rdfs:comment "Durchschnittliche Temperatur im kältesten Monat"@de ; rdfs:label "Temperature of coldest month"@en ; rdfs:label "Temperatur im kältesten Monat"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:average_temperature_of_coldest_month rdfs:subPropertyOf :average_temperature_of_coldest_month . :rainfall a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "litre" ; rdfs:comment "Rainfall litre per square meter"@en ; rdfs:comment "Niederschlag in Liter pro Quadratmeter"@de ; rdfs:label "Rainfall"@en ; rdfs:label "Niederschlag"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:rainfall_litre_per_m2 rdfs:subPropertyOf :rainfall . rdfs:subPropertyOf :rainfall . :no_days_ozone_o3_concentrations_exceed_120_microgram_per_m3 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Number of days with Ozone (O3) concentrations exceeding 120 micrograms per cubic meter"@en ; rdfs:comment "Anzahl der Tage mit Ozon-Gehalt (O3) über 120 Mikrogramm pro Kubikmeter"@de ; rdfs:label "Days with high O3 concentrations"@en ; rdfs:label "Tage mit hohem O3-Gehalt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:no_days_ozone_o3_concentrations_exceed_120_microgram_per_m3 rdfs:subPropertyOf :no_days_ozone_o3_concentrations_exceed_120_microgram_per_m3 . :no_days_nitrogen_dioxide_no2_concentrations_exceed_200_microgram_per_m3 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Number of days with Nitrogen dioxide (NO2) concentrations exceeding 200 micrograms per cubic meter"@en ; rdfs:comment "Anzahl der Tage mit Stickstoffdioxid-Gehalt (NO2) über 200 Mikrogramm pro Kubikmeter"@de ; rdfs:label "Days with high NO2 concentrations"@en ; rdfs:label "Tage mit hohem NO2-Gehalt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:no_days_nitrogen_dioxide_no2_concentrations_exceed_200_microgram_per_m3 rdfs:subPropertyOf :no_days_nitrogen_dioxide_no2_concentrations_exceed_200_microgram_per_m3 . :no_days_particulate_matter_pm10_concentrations_exceed_50_microgram_per_m3 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Number of days with Particulate Matter (PM10) concentrations exceeding 50 micrograms per cubic meter"@en ; rdfs:comment "Anzahl der Tage mit Feinstaub-Gehalt (PM10) über 50 Mikrogramm pro Kubikmeter"@de ; rdfs:label "Days with high Particulate Matter concentrations (PM10)"@en ; rdfs:label "Tage mit hohem Feinstaub-Gehalt (PM10)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:no_days_particulate_matter_pm10_concentrations_exceed_50_microgram_per_m3 rdfs:subPropertyOf :no_days_particulate_matter_pm10_concentrations_exceed_50_microgram_per_m3 . :no_days_particulate_matter_pm25_concentrations_exceed_50_microgram_per_m3 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Number of days with Particulate Matter (PM2.5) concentrations exceeding 50 micrograms per cubic meter"@en ; rdfs:comment "Anzahl der Tage mit Feinstaub-Gehalt (PM2.5) über 50 Mikrogramm pro Kubikmeter"@de ; rdfs:label "Days with high Particulate Matter concentrations (PM2.5)"@en ; rdfs:label "Tage mit hohem Feinstaub-Gehalt (PM2.5)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:no_days_particulate_matter_pm25_concentrations_exceed_50_microgram_per_m3 rdfs:subPropertyOf :no_days_particulate_matter_pm25_concentrations_exceed_50_microgram_per_m3 . :accumulated_ozone_concentration_in_excess_70_microgram_per_m3 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "microgram per m3" ; rdfs:comment "Accumulated ozone concentration"@en ; rdfs:comment "Akkumulierter Ozon-Gehalt"@de ; rdfs:label "Accumulated ozone concentration"@en ; rdfs:label "Akkumulierter Ozon-Gehalt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:accumulated_ozone_concentration_in_excess_70_microgram_per_m3 rdfs:subPropertyOf :accumulated_ozone_concentration_in_excess_70_microgram_per_m3 . :annual_average_concentration_of_no2_microgram_per_m3 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "microgram per m3" ; rdfs:comment "Annual average concentration of Nitrogen dioxide (NO2) in microgram per cubic meter"@en ; rdfs:comment "Jahresdurchschnitt des Stickstoffdioxid-Gehalts (NO2) in Mikrogramm pro Kubikmeter"@de ; rdfs:label "Average NO2 concentration"@en ; rdfs:label "Durchschnittlicher NO2-Gehalt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:annual_average_concentration_of_no2_microgram_per_m3 rdfs:subPropertyOf :annual_average_concentration_of_no2_microgram_per_m3 . :pm10_concentration a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "microgram per m3" ; rdfs:comment "Annual average concentration of Particulate Matter (PM10) in microgram per cubic meter"@en ; rdfs:comment "Jahresdurchschnitt des Feinstaub-Gehalts (PM10) in Mikrogramm pro Kubikmeter"@de ; rdfs:label "Average Particulate Matter concentration"@en ; rdfs:label "Durchschnittlicher Feinstaub-Gehalt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:annual_average_concentration_of_pm10_microgram_per_m3 rdfs:subPropertyOf :pm10_concentration . wb:pm10_country_level_micrograms_per_cubic_meter rdfs:subPropertyOf :pm10_concentration . :no_residents_exposed_to_air_traffic_noise_greater_than_65_dba_at_day_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of residents exposed to air traffic noise greater than 65 dba at day time"@en ; rdfs:comment "Anzahl der Einwohner, die tagsüber Fluglärm lauter als 65 dba ausgesetzt sind"@de ; rdfs:label "Residents exposed to air traffic noise (>65 dba day time)"@en ; rdfs:label "Einwohner Fluglärm > 65 dba ausgesetzt (tagsüber)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Environment . urbanaudit:no_residents_exposed_to_air_traffic_noise_greater_than_65_dba_at_day_time rdfs:subPropertyOf :no_residents_exposed_to_air_traffic_noise_greater_than_65_dba_at_day_time . :proportion_of_residents_exposed_to_air_traffic_noise_greater_than_55_dba_at_night_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of residents exposed to air traffic noise greater than 55 dba at night time"@en ; rdfs:comment "Anteil der Einwohner, die nachts Fluglärm lauter als 55 dba ausgesetzt sind"@de ; rdfs:label "Proportion exposed to air traffic noise (>55 dba night time)"@en ; rdfs:label "Anteil Fluglärm > 55 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:proportion_of_residents_exposed_to_air_traffic_noise_greater_than_55_dba_at_night_time rdfs:subPropertyOf :proportion_of_residents_exposed_to_air_traffic_noise_greater_than_55_dba_at_night_time . :no_residents_exposed_to_air_traffic_noise_greater_than_55_dba_at_night_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of residents exposed to air traffic noise greater than 55 dba at night time"@en ; rdfs:comment "Anzahl der Einwohner, die nachts Fluglärm lauter als 55 dba ausgesetzt sind"@de ; rdfs:label "Residents exposed to air traffic noise (>55 dba night time)"@en ; rdfs:label "Einwohner Fluglärm > 55 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Environment . urbanaudit:no_residents_exposed_to_air_traffic_noise_greater_than_55_dba_at_night_time rdfs:subPropertyOf :no_residents_exposed_to_air_traffic_noise_greater_than_55_dba_at_night_time . :proportion_of_residents_exposed_to_rail_traffic_noise_greater_than_65_dba_at_day_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of residents exposed to rail traffic noise greater than 65 dba at day time"@en ; rdfs:comment "Anteil der Einwohner, die nachts Schienenverkehrslärm lauter als 65 dba ausgesetzt sind"@de ; rdfs:label "Proportion exposed to rail traffic noise (>65 dba day time)"@en ; rdfs:label "Anteil Schienenverkehrslärm > 65 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:proportion_of_residents_exposed_to_rail_traffic_noise_greater_than_65_dba_at_day_time rdfs:subPropertyOf :proportion_of_residents_exposed_to_rail_traffic_noise_greater_than_65_dba_at_day_time . :no_residents_exposed_to_rail_traffic_incl_tram_noise_greater_than_65dba_at_daytime a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of residents exposed to rail traffic including tram noise noise greater than 65 dba at day time"@en ; rdfs:comment "Anzahl der Einwohner, die tagsüber Schienenverkehrslärm inklusive Straßenbahnen lauter als 65 dba ausgesetzt sind"@de ; rdfs:label "Residents exposed to rail traffic noise (>65 dba day time)"@en ; rdfs:label "Einwohner Schienenverkehrslärm > 65 dba ausgesetzt (tagsüber)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Environment . urbanaudit:no_residents_exposed_to_rail_traffic_incl_tram_noise_greater_than_65dba_at_daytime rdfs:subPropertyOf :no_residents_exposed_to_rail_traffic_incl_tram_noise_greater_than_65dba_at_daytime . :proportion_of_residents_exposed_to_road_traffic_noise_greater_than_65_dba_at_day_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of residents exposed to road traffic noise greater than 65 dba at day time"@en ; rdfs:comment "Anteil der Einwohner, die tagsüber Straßenverkehrslärm lauter als 65 dba ausgesetzt sind"@de ; rdfs:label "Proportion exposed to road traffic noise (>65 dba day time)"@en ; rdfs:label "Anteil Straßenverkehrslärm > 65 dba ausgesetzt (tagsüber)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:proportion_of_residents_exposed_to_road_traffic_noise_greater_than_65_dba_at_day_time rdfs:subPropertyOf :proportion_of_residents_exposed_to_road_traffic_noise_greater_than_65_dba_at_day_time . :no_residents_exposed_to_road_traffic_noise_greater_than_65_dba_at_day_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of residents exposed to road traffic noise greater than 65 dba at day time"@en ; rdfs:comment "Anzahl der Einwohner, die tagsüber Straßenverkehrslärm lauter als 65 dba ausgesetzt sind"@de ; rdfs:label "Residents exposed to road traffic noise (>65 dba day time)"@en ; rdfs:label "Einwohner Straßenverkehrslärm > 65 dba ausgesetzt (tagsüber)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Environment . urbanaudit:no_residents_exposed_to_road_traffic_noise_greater_than_65_dba_at_day_time rdfs:subPropertyOf :no_residents_exposed_to_road_traffic_noise_greater_than_65_dba_at_day_time . :proportion_of_residents_exposed_to_road_traffic_noise_greater_than_55_dba_at_night_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of residents exposed to road traffic noise greater than 55 dba at night time"@en ; rdfs:comment "Anteil der Einwohner, die nachts Straßenverkehrslärm lauter als 55 dba ausgesetzt sind"@de ; rdfs:label "Proportion exposed to road traffic noise (>55 dba night time)"@en ; rdfs:label "Anteil Straßenverkehrslärm > 55 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:proportion_of_residents_exposed_to_road_traffic_noise_greater_than_55_dba_at_night_time rdfs:subPropertyOf :proportion_of_residents_exposed_to_road_traffic_noise_greater_than_55_dba_at_night_time . :no_residents_exposed_to_road_traffic_noise_greater_than_55_dba_at_night_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of residents exposed to road traffic noise greater than 55 dba at night time"@en ; rdfs:comment "Anzahl der Einwohner, die nachts Straßenverkehrslärm lauter als 55 dba ausgesetzt sind"@de ; rdfs:label "Residents exposed to road traffic noise (>55 dba night time)"@en ; rdfs:label "Einwohner Straßenverkehrslärm > 55 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Environment . urbanaudit:no_residents_exposed_to_road_traffic_noise_greater_than_55_dba_at_night_time rdfs:subPropertyOf :no_residents_exposed_to_road_traffic_noise_greater_than_55_dba_at_night_time . :proportion_of_residents_exposed_to_rail_traffic_noise_greater_than_55_dba_at_night_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of residents exposed to rail traffic noise greater than 55 dba at night time"@en ; rdfs:comment "Anteil der Einwohner, die nachts Schienenverkehrslärm lauter als 55 dba ausgesetzt sind"@de ; rdfs:label "Proportion exposed to rail traffic noise (>55 dba night time)"@en ; rdfs:label "Anteil Schienenverkehrslärm > 55 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:proportion_of_residents_exposed_to_rail_traffic_noise_greater_than_55_dba_at_night_time rdfs:subPropertyOf :proportion_of_residents_exposed_to_rail_traffic_noise_greater_than_55_dba_at_night_time . :no_residents_exposed_to_rail_traffic_incl_tram_noise_greater_than_55dba_at_night-time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of residents exposed to rail traffic including tram noise noise greater than 55 dba at night time"@en ; rdfs:comment "Anzahl der Einwohner, die nachts Schienenverkehrslärm inklusive Straßenbahnen lauter als 55 dba ausgesetzt sind"@de ; rdfs:label "Residents exposed to rail traffic noise (>55 dba night time)"@en ; rdfs:label "Einwohner Schienenverkehrslärm > 55 dba ausgesetzt (nachts)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :Environment . urbanaudit:no_residents_exposed_to_rail_traffic_incl_tram_noise_greater_than_55dba_at_night-time rdfs:subPropertyOf :no_residents_exposed_to_rail_traffic_incl_tram_noise_greater_than_55dba_at_night-time . :total_use_of_water a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cubic meter" ; rdfs:comment "Total use of water in cubic meter (m3)"@en ; rdfs:comment "Wasserverbrauch gesamt in Kubikmeter (m3)"@de ; rdfs:label "Use of Water (m3)"@en ; rdfs:label "Wasserverbrauch (m3)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:total_use_of_water rdfs:subPropertyOf :total_use_of_water . :price_of_a_m3_of_domestic_water_euro a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Price of a cubic meter (m3) of domestic water"@en ; rdfs:comment "Preis für einen Kubikmeter (m3) inländischen Wassers"@de ; rdfs:label "Price domestic water"@en ; rdfs:label "Preis inländisches Wasser"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:price_of_a_m3_of_domestic_water_euro rdfs:subPropertyOf :price_of_a_m3_of_domestic_water_euro . :percentage_of_the_urban_waste_water_load_in_population_equivalents_treated_according_to_the_applicable_standard a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of the urban waste water load (in population equivalents) treated according to the applicable standard"@en ; rdfs:comment "Anteil der städtischen Abwasserbelastung (bezogen auf die Bevölkerung), der nach der gültigen Norm behandelt wird"@de ; rdfs:label "Proportion correct waste water treatment"@en ; rdfs:label "Anteil korrekte Abwasser-Behandlung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:percentage_of_the_urban_waste_water_load_in_population_equivalents_treated_according_to_the_applicable_standard rdfs:subPropertyOf :percentage_of_the_urban_waste_water_load_in_population_equivalents_treated_according_to_the_applicable_standard . :share_of_population_connected_to_potable_drinking_water_system a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Share of population connected to a potable drinking water system"@en ; rdfs:comment "Anteil der Bevölkerung, der einen Trinkwasser-Anschluss hat"@de ; rdfs:label "Proportion potable drinking water"@en ; rdfs:label "Trinkwasserversorgung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:share_of_population_connected_to_potable_drinking_water_system rdfs:subPropertyOf :share_of_population_connected_to_potable_drinking_water_system . :share_of_population_connected_to_sewerage_treatment_system a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Share of population connected to sewerage treatment system"@en ; rdfs:comment "Anteil der Bevölkerung, der an ein Kanalisations-System angebunden ist"@de ; rdfs:label "Proportion sewerage"@en ; rdfs:label "Kanalisations-Versorgung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:share_of_population_connected_to_sewerage_treatment_system rdfs:subPropertyOf :share_of_population_connected_to_sewerage_treatment_system . :municipal_waste_generated_domestic_and_commercial_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "1000 t" ; rdfs:comment "Municipal waste generated domestic and commercial (in 1000t)"@en ; rdfs:comment "Hausmüll und kommerzieller Müll (1000 T)"@de ; rdfs:label "Municipal waste (1000 t)"@en ; rdfs:label "Müll (1000 T)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . urbanaudit:municipal_waste_generated_domestic_and_commercial_total rdfs:subPropertyOf :municipal_waste_generated_domestic_and_commercial_total . ############################################# # WEATHER INDICATORS FROM DBPEDIA :temperature_high_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature yearly average high (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur jährlich (Grad Celsius)"@de ; rdfs:label "Temperature high year"@en ; rdfs:label "Temperatur Höchstwert Jahr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_year . :temperature_low_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature yearly average low (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur jährlich (Grad Celsius)"@de ; rdfs:label "Temperature low year"@en ; rdfs:label "Temperatur Tiefstwert Jahr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_year . :temperature_mean_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature yearly mean (degree celsius)"@en ; rdfs:comment "Durchschnittliche Jahres-Temperatur (Grad Celsius)"@de ; rdfs:label "Temperature yearly mean"@en ; rdfs:label "Temperatur Jahres-Durchschnitt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_year . :humidity_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity yearly mean"@en ; rdfs:comment "Luftfeuchtigkeit Jahresdurchschnitt"@de ; rdfs:label "Humidity year"@en ; rdfs:label "Luftfeuchtigkeit Jahr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_year . :precipitation_days_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) per year"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) pro Jahr"@de ; rdfs:label "Precipitation days year"@en ; rdfs:label "Tage mit Niederschlag Jahr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_year . rdfs:subPropertyOf :precipitation_days_year . :precipitation_mm_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount per year (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Jahr (in mm)"@de ; rdfs:label "Precipitation per year (in mm)"@en ; rdfs:label "Niederschlag pro Jahr (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_year . rdfs:subPropertyOf :precipitation_mm_year . :snow_days_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) per year"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Jahr"@de ; rdfs:label "Snow days year"@en ; rdfs:label "Tage mit Schnee Jahr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_year . :snow_cm_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount per year (in cm)"@en ; rdfs:comment "Schnee jährlich (in cm)"@de ; rdfs:label "Snow per year (in cm)"@en ; rdfs:label "Schnee pro Jahr (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_year . :sun_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Total sunshine hours per year"@en ; rdfs:comment "Jährliche Sonnenstunden"@de ; rdfs:label "Sunshine hours per year"@en ; rdfs:label "Sonnenstunden pro Jahr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_year . :temperature_high_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in January (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Jänner (Grad Celsius)"@de ; rdfs:label "Temperature high January"@en ; rdfs:label "Temperatur Höchstwert Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_jan . rdfs:subPropertyOf :temperature_high_jan . :temperature_high_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in February (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Februar (Grad Celsius)"@de ; rdfs:label "Temperature high February"@en ; rdfs:label "Temperatur Höchstwert Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_feb . rdfs:subPropertyOf :temperature_high_feb . :temperature_high_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in March (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im März (Grad Celsius)"@de ; rdfs:label "Temperature high March"@en ; rdfs:label "Temperatur Höchstwert März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_mar . rdfs:subPropertyOf :temperature_high_mar . :temperature_high_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in April (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im April (Grad Celsius)"@de ; rdfs:label "Temperature high April"@en ; rdfs:label "Temperatur Höchstwert April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_apr . rdfs:subPropertyOf :temperature_high_apr . :temperature_high_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in May (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Mai (Grad Celsius)"@de ; rdfs:label "Temperature high May"@en ; rdfs:label "Temperatur Höchstwert Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_may . :temperature_high_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in June (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Juni (Grad Celsius)"@de ; rdfs:label "Temperature high June"@en ; rdfs:label "Temperatur Höchstwert Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_jun . rdfs:subPropertyOf :temperature_high_jun . :temperature_high_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in July (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Juli (Grad Celsius)"@de ; rdfs:label "Temperature high July"@en ; rdfs:label "Temperatur Höchstwert Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_jul . rdfs:subPropertyOf :temperature_high_jul . :temperature_high_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in August (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im August (Grad Celsius)"@de ; rdfs:label "Temperature high August"@en ; rdfs:label "Temperatur Höchstwert August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_aug . rdfs:subPropertyOf :temperature_high_aug . :temperature_high_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in September (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im September (Grad Celsius)"@de ; rdfs:label "Temperature high September"@en ; rdfs:label "Temperatur Höchstwert September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_sep . rdfs:subPropertyOf :temperature_high_sep . :temperature_high_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in October (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Oktober (Grad Celsius)"@de ; rdfs:label "Temperature high October"@en ; rdfs:label "Temperatur Höchstwert Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_oct . rdfs:subPropertyOf :temperature_high_oct . :temperature_high_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in November (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im November (Grad Celsius)"@de ; rdfs:label "Temperature high November"@en ; rdfs:label "Temperatur Höchstwert November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_nov . rdfs:subPropertyOf :temperature_high_nov . :temperature_high_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average high in December (degree celsius)"@en ; rdfs:comment "Höchste durchschnittliche Temperatur im Dezember (Grad Celsius)"@de ; rdfs:label "Temperature high December"@en ; rdfs:label "Temperatur Höchstwert Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_high_dec . rdfs:subPropertyOf :temperature_high_dec . :temperature_low_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in January (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Jänner (Grad Celsius)"@de ; rdfs:label "Temperature high January"@en ; rdfs:label "Temperatur Tiefstwert Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_jan . rdfs:subPropertyOf :temperature_low_jan . :temperature_low_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in February (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Februar (Grad Celsius)"@de ; rdfs:label "Temperature high February"@en ; rdfs:label "Temperatur Tiefstwert Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_feb . rdfs:subPropertyOf :temperature_low_feb . :temperature_low_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in March (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im März (Grad Celsius)"@de ; rdfs:label "Temperature high March"@en ; rdfs:label "Temperatur Tiefstwert März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_mar . rdfs:subPropertyOf :temperature_low_mar . :temperature_low_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in April (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im April (Grad Celsius)"@de ; rdfs:label "Temperature high April"@en ; rdfs:label "Temperatur Tiefstwert April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_apr . rdfs:subPropertyOf :temperature_low_apr . :temperature_low_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in May (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Mai (Grad Celsius)"@de ; rdfs:label "Temperature high May"@en ; rdfs:label "Temperatur Tiefstwert Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_may . :temperature_low_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in June (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Juni (Grad Celsius)"@de ; rdfs:label "Temperature high June"@en ; rdfs:label "Temperatur Tiefstwert Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_jun . rdfs:subPropertyOf :temperature_low_jun . :temperature_low_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in July (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Juli (Grad Celsius)"@de ; rdfs:label "Temperature high July"@en ; rdfs:label "Temperatur Tiefstwert Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_jul . rdfs:subPropertyOf :temperature_low_jul . :temperature_low_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in August (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im August (Grad Celsius)"@de ; rdfs:label "Temperature high August"@en ; rdfs:label "Temperatur Tiefstwert August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_aug . rdfs:subPropertyOf :temperature_low_aug . :temperature_low_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in September (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im September (Grad Celsius)"@de ; rdfs:label "Temperature high September"@en ; rdfs:label "Temperatur Tiefstwert September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_sep . rdfs:subPropertyOf :temperature_low_sep . :temperature_low_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in October (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Oktober (Grad Celsius)"@de ; rdfs:label "Temperature high October"@en ; rdfs:label "Temperatur Tiefstwert Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_oct . rdfs:subPropertyOf :temperature_low_oct . :temperature_low_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in November (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im November (Grad Celsius)"@de ; rdfs:label "Temperature high November"@en ; rdfs:label "Temperatur Tiefstwert November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_nov . rdfs:subPropertyOf :temperature_low_nov . :temperature_low_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature average low in December (degree celsius)"@en ; rdfs:comment "Niedrigste durchschnittliche Temperatur im Dezember (Grad Celsius)"@de ; rdfs:label "Temperature high December"@en ; rdfs:label "Temperatur Tiefstwert Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_low_dec . rdfs:subPropertyOf :temperature_low_dec . :temperature_mean_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in January (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Jänner (Grad Celsius)"@de ; rdfs:label "Temperature mean January"@en ; rdfs:label "Temperatur Durchschnitt Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_jan . rdfs:subPropertyOf :temperature_mean_jan . :temperature_mean_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in February (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Februar (Grad Celsius)"@de ; rdfs:label "Temperature mean February"@en ; rdfs:label "Temperatur Durchschnitt Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_feb . rdfs:subPropertyOf :temperature_mean_feb . :temperature_mean_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in March (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im März (Grad Celsius)"@de ; rdfs:label "Temperature mean March"@en ; rdfs:label "Temperatur Durchschnitt März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_mar . rdfs:subPropertyOf :temperature_mean_mar . :temperature_mean_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in April (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im April (Grad Celsius)"@de ; rdfs:label "Temperature mean April"@en ; rdfs:label "Temperatur Durchschnitt April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_apr . rdfs:subPropertyOf :temperature_mean_apr . :temperature_mean_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in May (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Mai (Grad Celsius)"@de ; rdfs:label "Temperature mean May"@en ; rdfs:label "Temperatur Durchschnitt Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_may . :temperature_mean_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in June (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Juni (Grad Celsius)"@de ; rdfs:label "Temperature mean June"@en ; rdfs:label "Temperatur Durchschnitt Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_jun . rdfs:subPropertyOf :temperature_mean_jun . :temperature_mean_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in July (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Juli (Grad Celsius)"@de ; rdfs:label "Temperature mean July"@en ; rdfs:label "Temperatur Durchschnitt Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_jul . rdfs:subPropertyOf :temperature_mean_jul . :temperature_mean_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in August (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im August (Grad Celsius)"@de ; rdfs:label "Temperature mean August"@en ; rdfs:label "Temperatur Durchschnitt August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_aug . rdfs:subPropertyOf :temperature_mean_aug . :temperature_mean_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in September (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im September (Grad Celsius)"@de ; rdfs:label "Temperature mean September"@en ; rdfs:label "Temperatur Durchschnitt September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_sep . rdfs:subPropertyOf :temperature_mean_sep . :temperature_mean_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in October (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Oktober (Grad Celsius)"@de ; rdfs:label "Temperature mean October"@en ; rdfs:label "Temperatur Durchschnitt Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_oct . rdfs:subPropertyOf :temperature_mean_oct . :temperature_mean_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in November (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im November (Grad Celsius)"@de ; rdfs:label "Temperature mean November"@en ; rdfs:label "Temperatur Durchschnitt November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_nov . rdfs:subPropertyOf :temperature_mean_nov . :temperature_mean_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature daily mean in December (degree celsius)"@en ; rdfs:comment "Durchschnittliche Tages-Temperatur im Dezember (Grad Celsius)"@de ; rdfs:label "Temperature mean December"@en ; rdfs:label "Temperatur Durchschnitt Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_mean_dec . rdfs:subPropertyOf :temperature_mean_dec . :temperature_record_high_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in January (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Jänner (Grad Celsius)"@de ; rdfs:label "Temperature record high January"@en ; rdfs:label "Temperatur Rekord-Höchstwert Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_jan . rdfs:subPropertyOf :temperature_record_high_jan . :temperature_record_high_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in February (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Februar (Grad Celsius)"@de ; rdfs:label "Temperature record high February"@en ; rdfs:label "Temperatur Rekord-Höchstwert Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_feb . rdfs:subPropertyOf :temperature_record_high_feb . :temperature_record_high_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in March (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im März (Grad Celsius)"@de ; rdfs:label "Temperature record high March"@en ; rdfs:label "Temperatur Rekord-Höchstwert März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_mar . rdfs:subPropertyOf :temperature_record_high_mar . :temperature_record_high_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in April (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im April (Grad Celsius)"@de ; rdfs:label "Temperature record high April"@en ; rdfs:label "Temperatur Rekord-Höchstwert April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_apr . rdfs:subPropertyOf :temperature_record_high_apr . :temperature_record_high_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in May (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Mai (Grad Celsius)"@de ; rdfs:label "Temperature record high May"@en ; rdfs:label "Temperatur Rekord-Höchstwert Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_may . :temperature_record_high_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in June (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Juni (Grad Celsius)"@de ; rdfs:label "Temperature record high June"@en ; rdfs:label "Temperatur Rekord-Höchstwert Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_jun . rdfs:subPropertyOf :temperature_record_high_jun . :temperature_record_high_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in July (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Juli (Grad Celsius)"@de ; rdfs:label "Temperature record high July"@en ; rdfs:label "Temperatur Rekord-Höchstwert Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_jul . rdfs:subPropertyOf :temperature_record_high_jul . :temperature_record_high_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in August (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im August (Grad Celsius)"@de ; rdfs:label "Temperature record high August"@en ; rdfs:label "Temperatur Rekord-Höchstwert August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_aug . rdfs:subPropertyOf :temperature_record_high_aug . :temperature_record_high_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in September (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im September (Grad Celsius)"@de ; rdfs:label "Temperature record high September"@en ; rdfs:label "Temperatur Rekord-Höchstwert September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_sep . rdfs:subPropertyOf :temperature_record_high_sep . :temperature_record_high_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in October (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Oktober (Grad Celsius)"@de ; rdfs:label "Temperature record high October"@en ; rdfs:label "Temperatur Rekord-Höchstwert Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_oct . rdfs:subPropertyOf :temperature_record_high_oct . :temperature_record_high_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in November (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im November (Grad Celsius)"@de ; rdfs:label "Temperature record high November"@en ; rdfs:label "Temperatur Rekord-Höchstwert November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_nov . rdfs:subPropertyOf :temperature_record_high_nov . :temperature_record_high_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record high in December (degree celsius)"@en ; rdfs:comment "Höchste gemessene Temperatur im Dezember (Grad Celsius)"@de ; rdfs:label "Temperature record high December"@en ; rdfs:label "Temperatur Rekord-Höchstwert Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_high_dec . rdfs:subPropertyOf :temperature_record_high_dec . :temperature_record_low_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in January (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Jänner (Grad Celsius)"@de ; rdfs:label "Temperature record low January"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_jan . rdfs:subPropertyOf :temperature_record_low_jan . :temperature_record_low_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in February (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Februar (Grad Celsius)"@de ; rdfs:label "Temperature record low February"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_feb . rdfs:subPropertyOf :temperature_record_low_feb . :temperature_record_low_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in March (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im März (Grad Celsius)"@de ; rdfs:label "Temperature record low March"@en ; rdfs:label "Temperatur Rekord-Tiefstwert März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_mar . rdfs:subPropertyOf :temperature_record_low_mar . :temperature_record_low_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in April (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im April (Grad Celsius)"@de ; rdfs:label "Temperature record low April"@en ; rdfs:label "Temperatur Rekord-Tiefstwert April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_apr . rdfs:subPropertyOf :temperature_record_low_apr . :temperature_record_low_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in May (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Mai (Grad Celsius)"@de ; rdfs:label "Temperature record low May"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_may . :temperature_record_low_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in June (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Juni (Grad Celsius)"@de ; rdfs:label "Temperature record low June"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_jun . rdfs:subPropertyOf :temperature_record_low_jun . :temperature_record_low_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in July (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Juli (Grad Celsius)"@de ; rdfs:label "Temperature record low July"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_jul . rdfs:subPropertyOf :temperature_record_low_jul . :temperature_record_low_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in August (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im August (Grad Celsius)"@de ; rdfs:label "Temperature record low August"@en ; rdfs:label "Temperatur Rekord-Tiefstwert August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_aug . rdfs:subPropertyOf :temperature_record_low_aug . :temperature_record_low_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in September (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im September (Grad Celsius)"@de ; rdfs:label "Temperature record low September"@en ; rdfs:label "Temperatur Rekord-Tiefstwert September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_sep . rdfs:subPropertyOf :temperature_record_low_sep . :temperature_record_low_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in October (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Oktober (Grad Celsius)"@de ; rdfs:label "Temperature record low October"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_oct . rdfs:subPropertyOf :temperature_record_low_oct . :temperature_record_low_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in November (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im November (Grad Celsius)"@de ; rdfs:label "Temperature record low November"@en ; rdfs:label "Temperatur Rekord-Tiefstwert November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_nov . rdfs:subPropertyOf :temperature_record_low_nov . :temperature_record_low_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "celsius" ; rdfs:comment "Temperature record low in December (degree celsius)"@en ; rdfs:comment "Niedrigste gemessene Temperatur im Dezember (Grad Celsius)"@de ; rdfs:label "Temperature record low December"@en ; rdfs:label "Temperatur Rekord-Tiefstwert Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :temperature_record_low_dec . rdfs:subPropertyOf :temperature_record_low_dec . :humidity_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in January"@en ; rdfs:comment "Luftfeuchtigkeit im Jänner"@de ; rdfs:label "Humidity January"@en ; rdfs:label "Luftfeuchtigkeit Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_jan . rdfs:subPropertyOf :humidity_jan . :humidity_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in February"@en ; rdfs:comment "Luftfeuchtigkeit im Februar"@de ; rdfs:label "Humidity February"@en ; rdfs:label "Luftfeuchtigkeit Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_feb . rdfs:subPropertyOf :humidity_feb . :humidity_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in March"@en ; rdfs:comment "Luftfeuchtigkeit im März"@de ; rdfs:label "Humidity March"@en ; rdfs:label "Luftfeuchtigkeit März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_mar . rdfs:subPropertyOf :humidity_mar . :humidity_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in April"@en ; rdfs:comment "Luftfeuchtigkeit im April"@de ; rdfs:label "Humidity April"@en ; rdfs:label "Luftfeuchtigkeit April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_apr . rdfs:subPropertyOf :humidity_apr . :humidity_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in May"@en ; rdfs:comment "Luftfeuchtigkeit im Mai"@de ; rdfs:label "Humidity May"@en ; rdfs:label "Luftfeuchtigkeit Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_may . :humidity_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in June"@en ; rdfs:comment "Luftfeuchtigkeit im Juni"@de ; rdfs:label "Humidity June"@en ; rdfs:label "Luftfeuchtigkeit Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_jun . rdfs:subPropertyOf :humidity_jun . :humidity_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in July"@en ; rdfs:comment "Luftfeuchtigkeit im Juli"@de ; rdfs:label "Humidity July"@en ; rdfs:label "Luftfeuchtigkeit Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_jul . rdfs:subPropertyOf :humidity_jul . :humidity_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in August"@en ; rdfs:comment "Luftfeuchtigkeit im August"@de ; rdfs:label "Humidity August"@en ; rdfs:label "Luftfeuchtigkeit August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_aug . rdfs:subPropertyOf :humidity_aug . :humidity_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in September"@en ; rdfs:comment "Luftfeuchtigkeit im September"@de ; rdfs:label "Humidity September"@en ; rdfs:label "Luftfeuchtigkeit September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_sep . rdfs:subPropertyOf :humidity_sep . :humidity_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in October"@en ; rdfs:comment "Luftfeuchtigkeit im Oktober"@de ; rdfs:label "Humidity October"@en ; rdfs:label "Luftfeuchtigkeit Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_oct . rdfs:subPropertyOf :humidity_oct . :humidity_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in November"@en ; rdfs:comment "Luftfeuchtigkeit im November"@de ; rdfs:label "Humidity November"@en ; rdfs:label "Luftfeuchtigkeit November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_nov . rdfs:subPropertyOf :humidity_nov . :humidity_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Humidity in December"@en ; rdfs:comment "Luftfeuchtigkeit im Dezember"@de ; rdfs:label "Humidity December"@en ; rdfs:label "Luftfeuchtigkeit Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :humidity_dec . rdfs:subPropertyOf :humidity_dec . :precipitation_days_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in January"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Jänner"@de ; rdfs:label "Precipitation days January"@en ; rdfs:label "Tage mit Niederschlag Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_jan . rdfs:subPropertyOf :precipitation_days_jan . rdfs:subPropertyOf :precipitation_days_jan . :precipitation_days_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in February"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Februar"@de ; rdfs:label "Precipitation days February"@en ; rdfs:label "Tage mit Niederschlag Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_feb . rdfs:subPropertyOf :precipitation_days_feb . rdfs:subPropertyOf :precipitation_days_feb . :precipitation_days_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in March"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im März"@de ; rdfs:label "Precipitation days March"@en ; rdfs:label "Tage mit Niederschlag März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_mar . rdfs:subPropertyOf :precipitation_days_mar . rdfs:subPropertyOf :precipitation_days_mar . :precipitation_days_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in April"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im April"@de ; rdfs:label "Precipitation days April"@en ; rdfs:label "Tage mit Niederschlag April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_apr . rdfs:subPropertyOf :precipitation_days_apr . rdfs:subPropertyOf :precipitation_days_apr . :precipitation_days_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in May"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Mai"@de ; rdfs:label "Precipitation days May"@en ; rdfs:label "Tage mit Niederschlag Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_may . rdfs:subPropertyOf :precipitation_days_may . :precipitation_days_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in June"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Juni"@de ; rdfs:label "Precipitation days June"@en ; rdfs:label "Tage mit Niederschlag Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_jun . rdfs:subPropertyOf :precipitation_days_jun . rdfs:subPropertyOf :precipitation_days_jun . :precipitation_days_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in July"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Juli"@de ; rdfs:label "Precipitation days July"@en ; rdfs:label "Tage mit Niederschlag Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_jul . rdfs:subPropertyOf :precipitation_days_jul . rdfs:subPropertyOf :precipitation_days_jul . :precipitation_days_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in August"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im August"@de ; rdfs:label "Precipitation days August"@en ; rdfs:label "Tage mit Niederschlag August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_aug . rdfs:subPropertyOf :precipitation_days_aug . rdfs:subPropertyOf :precipitation_days_aug . :precipitation_days_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in September"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im September"@de ; rdfs:label "Precipitation days September"@en ; rdfs:label "Tage mit Niederschlag September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_sep . rdfs:subPropertyOf :precipitation_days_sep . rdfs:subPropertyOf :precipitation_days_sep . :precipitation_days_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in October"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Oktober"@de ; rdfs:label "Precipitation days October"@en ; rdfs:label "Tage mit Niederschlag Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_oct . rdfs:subPropertyOf :precipitation_days_oct . rdfs:subPropertyOf :precipitation_days_oct . :precipitation_days_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in November"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im November"@de ; rdfs:label "Precipitation days November"@en ; rdfs:label "Tage mit Niederschlag November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_nov . rdfs:subPropertyOf :precipitation_days_nov . rdfs:subPropertyOf :precipitation_days_nov . :precipitation_days_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with precipitation (>= 1.0 mm) in December"@en ; rdfs:comment "Tage mit Niederschlag (>= 1.0 mm) im Dezember"@de ; rdfs:label "Precipitation days December"@en ; rdfs:label "Tage mit Niederschlag Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_days_dec . rdfs:subPropertyOf :precipitation_days_dec . rdfs:subPropertyOf :precipitation_days_dec . :precipitation_mm_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in January (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Jänner (in mm)"@de ; rdfs:label "Precipitation January (in mm)"@en ; rdfs:label "Niederschlag Jänner (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_jan . rdfs:subPropertyOf :precipitation_mm_jan . rdfs:subPropertyOf :precipitation_mm_jan . :precipitation_mm_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in February (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Februar (in mm)"@de ; rdfs:label "Precipitation February (in mm)"@en ; rdfs:label "Niederschlag Februar (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_feb . rdfs:subPropertyOf :precipitation_mm_feb . rdfs:subPropertyOf :precipitation_mm_feb . :precipitation_mm_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in March (in mm)"@en ; rdfs:comment "Niederschlagsmenge im März (in mm)"@de ; rdfs:label "Precipitation March (in mm)"@en ; rdfs:label "Niederschlag März (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_mar . rdfs:subPropertyOf :precipitation_mm_mar . rdfs:subPropertyOf :precipitation_mm_mar . :precipitation_mm_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in April (in mm)"@en ; rdfs:comment "Niederschlagsmenge im April (in mm)"@de ; rdfs:label "Precipitation April (in mm)"@en ; rdfs:label "Niederschlag April (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_apr . rdfs:subPropertyOf :precipitation_mm_apr . rdfs:subPropertyOf :precipitation_mm_apr . :precipitation_mm_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in May (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Mai (in mm)"@de ; rdfs:label "Precipitation May (in mm)"@en ; rdfs:label "Niederschlag Mai (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_may . rdfs:subPropertyOf :precipitation_mm_may . :precipitation_mm_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in June (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Juni (in mm)"@de ; rdfs:label "Precipitation June (in mm)"@en ; rdfs:label "Niederschlag Juni (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_jun . rdfs:subPropertyOf :precipitation_mm_jun . rdfs:subPropertyOf :precipitation_mm_jun . :precipitation_mm_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in July (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Juli (in mm)"@de ; rdfs:label "Precipitation July (in mm)"@en ; rdfs:label "Niederschlag Juli (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_jul . rdfs:subPropertyOf :precipitation_mm_jul . rdfs:subPropertyOf :precipitation_mm_jul . :precipitation_mm_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in August (in mm)"@en ; rdfs:comment "Niederschlagsmenge im August (in mm)"@de ; rdfs:label "Precipitation August (in mm)"@en ; rdfs:label "Niederschlag August (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_aug . rdfs:subPropertyOf :precipitation_mm_aug . rdfs:subPropertyOf :precipitation_mm_aug . :precipitation_mm_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in September (in mm)"@en ; rdfs:comment "Niederschlagsmenge im September (in mm)"@de ; rdfs:label "Precipitation September (in mm)"@en ; rdfs:label "Niederschlag September (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_sep . rdfs:subPropertyOf :precipitation_mm_sep . rdfs:subPropertyOf :precipitation_mm_sep . :precipitation_mm_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in October (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Oktober (in mm)"@de ; rdfs:label "Precipitation October (in mm)"@en ; rdfs:label "Niederschlag Oktober (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_oct . rdfs:subPropertyOf :precipitation_mm_oct . rdfs:subPropertyOf :precipitation_mm_oct . :precipitation_mm_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in November (in mm)"@en ; rdfs:comment "Niederschlagsmenge im November (in mm)"@de ; rdfs:label "Precipitation November (in mm)"@en ; rdfs:label "Niederschlag November (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_nov . rdfs:subPropertyOf :precipitation_mm_nov . rdfs:subPropertyOf :precipitation_mm_nov . :precipitation_mm_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "mm" ; rdfs:comment "Precipitation amount in December (in mm)"@en ; rdfs:comment "Niederschlagsmenge im Dezember (in mm)"@de ; rdfs:label "Precipitation December (in mm)"@en ; rdfs:label "Niederschlag Dezember (in mm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :precipitation_mm_dec . rdfs:subPropertyOf :precipitation_mm_dec . rdfs:subPropertyOf :precipitation_mm_dec . :snow_days_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in January"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Jänner"@de ; rdfs:label "Snow days January"@en ; rdfs:label "Tage mit Schnee Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_jan . :snow_days_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in February"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Februar"@de ; rdfs:label "Snow days February"@en ; rdfs:label "Tage mit Schnee Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_feb . :snow_days_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in March"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im März"@de ; rdfs:label "Snow days March"@en ; rdfs:label "Tage mit Schnee März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_mar . :snow_days_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in April"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im April"@de ; rdfs:label "Snow days April"@en ; rdfs:label "Tage mit Schnee April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_apr . :snow_days_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in May"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Mai"@de ; rdfs:label "Snow days May"@en ; rdfs:label "Tage mit Schnee Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_may . :snow_days_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in June"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Juni"@de ; rdfs:label "Snow days June"@en ; rdfs:label "Tage mit Schnee Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_jun . :snow_days_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in July"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Juli"@de ; rdfs:label "Snow days July"@en ; rdfs:label "Tage mit Schnee Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_jul . :snow_days_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in August"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im August"@de ; rdfs:label "Snow days August"@en ; rdfs:label "Tage mit Schnee August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_aug . :snow_days_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in September"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im September"@de ; rdfs:label "Snow days September"@en ; rdfs:label "Tage mit Schnee September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_sep . :snow_days_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in October"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Oktober"@de ; rdfs:label "Snow days October"@en ; rdfs:label "Tage mit Schnee Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_oct . :snow_days_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in November"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im November"@de ; rdfs:label "Snow days November"@en ; rdfs:label "Tage mit Schnee November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_nov . :snow_days_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "days" ; rdfs:comment "Days with snow (>= 1.0 cm) in December"@en ; rdfs:comment "Tage mit Schnee (>= 1.0 cm) im Dezember"@de ; rdfs:label "Snow days December"@en ; rdfs:label "Tage mit Schnee Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_days_dec . :snow_cm_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in January (in cm)"@en ; rdfs:comment "Schnee im Jänner (in cm)"@de ; rdfs:label "Snow January (in cm)"@en ; rdfs:label "Schnee Jänner (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_jan . :snow_cm_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in February (in cm)"@en ; rdfs:comment "Schnee im Februar (in cm)"@de ; rdfs:label "Snow February (in cm)"@en ; rdfs:label "Schnee Februar (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_feb . :snow_cm_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in March (in cm)"@en ; rdfs:comment "Schnee im März (in cm)"@de ; rdfs:label "Snow March (in cm)"@en ; rdfs:label "Schnee März (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_mar . :snow_cm_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in April (in cm)"@en ; rdfs:comment "Schnee im April (in cm)"@de ; rdfs:label "Snow April (in cm)"@en ; rdfs:label "Schnee April (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_apr . :snow_cm_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in May (in cm)"@en ; rdfs:comment "Schnee im Mai (in cm)"@de ; rdfs:label "Snow May (in cm)"@en ; rdfs:label "Schnee Mai (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_may . :snow_cm_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in June (in cm)"@en ; rdfs:comment "Schnee im Juni (in cm)"@de ; rdfs:label "Snow June (in cm)"@en ; rdfs:label "Schnee Juni (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_jun . :snow_cm_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in July (in cm)"@en ; rdfs:comment "Schnee im Juli (in cm)"@de ; rdfs:label "Snow July (in cm)"@en ; rdfs:label "Schnee Juli (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_jul . :snow_cm_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in August (in cm)"@en ; rdfs:comment "Schnee im August (in cm)"@de ; rdfs:label "Snow August (in cm)"@en ; rdfs:label "Schnee August (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_aug . :snow_cm_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in September (in cm)"@en ; rdfs:comment "Schnee im September (in cm)"@de ; rdfs:label "Snow September (in cm)"@en ; rdfs:label "Schnee September (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_sep . :snow_cm_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in October (in cm)"@en ; rdfs:comment "Schnee im Oktober (in cm)"@de ; rdfs:label "Snow October (in cm)"@en ; rdfs:label "Schnee Oktober (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_oct . :snow_cm_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in November (in cm)"@en ; rdfs:comment "Schnee im November (in cm)"@de ; rdfs:label "Snow November (in cm)"@en ; rdfs:label "Schnee November (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_nov . :snow_cm_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "cm" ; rdfs:comment "Snow amount in December (in cm)"@en ; rdfs:comment "Schnee im Dezember (in cm)"@de ; rdfs:label "Snow December (in cm)"@en ; rdfs:label "Schnee Dezember (in cm)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :snow_cm_dec . :sun_jan a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in January"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Jänner"@de ; rdfs:label "Sunshine hours January"@en ; rdfs:label "Sonnenstunden Jänner"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_jan . :sun_feb a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in February"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Februar"@de ; rdfs:label "Sunshine hours February"@en ; rdfs:label "Sonnenstunden Februar"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_feb . :sun_mar a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in March"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im März"@de ; rdfs:label "Sunshine hours March"@en ; rdfs:label "Sonnenstunden März"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_mar . :sun_apr a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in April"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im April"@de ; rdfs:label "Sunshine hours April"@en ; rdfs:label "Sonnenstunden April"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_apr . :sun_may a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in May"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Mai"@de ; rdfs:label "Sunshine hours May"@en ; rdfs:label "Sonnenstunden Mai"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_may . :sun_jun a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in June"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Juni"@de ; rdfs:label "Sunshine hours June"@en ; rdfs:label "Sonnenstunden Juni"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_jun . :sun_jul a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in July"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Juli"@de ; rdfs:label "Sunshine hours July"@en ; rdfs:label "Sonnenstunden Juli"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_jul . :sun_aug a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in August"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im August"@de ; rdfs:label "Sunshine hours August"@en ; rdfs:label "Sonnenstunden August"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_aug . :sun_sep a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in September"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im September"@de ; rdfs:label "Sunshine hours September"@en ; rdfs:label "Sonnenstunden September"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_sep . :sun_oct a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in October"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Oktober"@de ; rdfs:label "Sunshine hours October"@en ; rdfs:label "Sonnenstunden Oktober"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_oct . :sun_nov a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in November"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im November"@de ; rdfs:label "Sunshine hours November"@en ; rdfs:label "Sonnenstunden November"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_nov . :sun_dec a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "hours" ; rdfs:comment "Mean monthly sunshine hours in December"@en ; rdfs:comment "Durchschnittliche monatliche Sonnenstunden im Dezember"@de ; rdfs:label "Sunshine hours December"@en ; rdfs:label "Sonnenstunden Dezember"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Environment . rdfs:subPropertyOf :sun_dec . ############################################# # SOCIAL ASPECTS INDICATORS :conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of conventional dwellings"@en ; rdfs:comment "Anzahl herkömmliche Wohnungen"@de ; rdfs:label "Dwellings"@en ; rdfs:label "Wohnungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_conventional_dwellings rdfs:subPropertyOf :conventional_dwellings . rdfs:subPropertyOf :conventional_dwellings . :no_houses a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of houses"@en ; rdfs:comment "Anzahl Häuser"@de ; rdfs:label "Houses"@en ; rdfs:label "Häuser"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_houses rdfs:subPropertyOf :no_houses . :no_apartments a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of apartments"@en ; rdfs:comment "Anzahl Apartments"@de ; rdfs:label "Apartments"@en ; rdfs:label "Apartments"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_apartments rdfs:subPropertyOf :no_apartments . :proportion_of_households_living_in_houses a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households living in houses"@en ; rdfs:comment "Anteil der Haushalte in Häusern"@de ; rdfs:label "Proportion living in houses"@en ; rdfs:label "Anteil Haushalte in Häusern"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:proportion_of_households_living_in_houses rdfs:subPropertyOf :proportion_of_households_living_in_houses . :no_households_living_in_houses a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of households living in houses"@en ; rdfs:comment "Anzahl der Haushalte in Häusern"@de ; rdfs:label "Households houses"@en ; rdfs:label "Haushalte Häusern"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_households_living_in_houses rdfs:subPropertyOf :no_households_living_in_houses . :proportion_of_households_living_in_apartments a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households living in apartments"@en ; rdfs:comment "Anteil der Haushalte in Apartments"@de ; rdfs:label "Proportion living in apartments"@en ; rdfs:label "Anteil Haushalte in Apartments"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:proportion_of_households_living_in_apartments rdfs:subPropertyOf :proportion_of_households_living_in_apartments . :no_households_living_in_apartments a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of households living in apartments"@en ; rdfs:comment "Anzahl der Haushalte in Apartments"@de ; rdfs:label "Households apartments"@en ; rdfs:label "Haushalte Apartments"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_households_living_in_apartments rdfs:subPropertyOf :no_households_living_in_apartments . :proportion_of_households_living_in_owned_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of households living in owned dwellings"@en ; rdfs:comment "Anteil der Haushalte in Eigentumswohnungen"@de ; rdfs:label "Proportion living in owned dwellings"@en ; rdfs:label "Anteil Haushalte in Eigentumswohnungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:proportion_of_households_living_in_owned_dwellings rdfs:subPropertyOf :proportion_of_households_living_in_owned_dwellings . :households_owning_their_own_dwelling a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Households owning their own dwelling"@en ; rdfs:comment "Haushalte in Eigentumswohnungen"@de ; rdfs:label "Households owning dwelling"@en ; rdfs:label "Haushalte Eigentumswohnungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:households_owning_their_own_dwelling rdfs:subPropertyOf :households_owning_their_own_dwelling . :households_in_social_housing a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Households in social housing"@en ; rdfs:comment "Haushalte in Sozialeinrichtungen"@de ; rdfs:label "Households social housing"@en ; rdfs:label "Haushalte Sozialeinrichtungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:households_in_social_housing rdfs:subPropertyOf :households_in_social_housing . :households_in_private_rented_housing a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Households in private rented housing"@en ; rdfs:comment "Haushalte in gemieteten Unterkünften"@de ; rdfs:label "Households private rented housing"@en ; rdfs:label "Haushalte gemietete Unterkünfte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:households_in_private_rented_housing rdfs:subPropertyOf :households_in_private_rented_housing . :dwellings_lacking_basic_amenities a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Dwellings lacking basic amenities"@en ; rdfs:comment "Wohnungen ohne grundlegende Einrichtungen"@de ; rdfs:label "Dwellings lacking basic amenities"@en ; rdfs:label "Wohnungen ohne grundlegende Einrichtungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:dwellings_lacking_basic_amenities rdfs:subPropertyOf :dwellings_lacking_basic_amenities . :average_area_of_living_accommodation_m2_per_person a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "m2" ; rdfs:comment "Average area of living accomodation (in square meters per person)"@en ; rdfs:comment "Durchschnittliche Wohnfläche (in Quadratmetern pro Person)"@de ; rdfs:label "Average area of living"@en ; rdfs:label "Durchschnittliche Wohnfläche"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:average_area_of_living_accommodation_m2_per_person rdfs:subPropertyOf :average_area_of_living_accommodation_m2_per_person . :empty_conventional_dwellings a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Empty conventional dwellings"@en ; rdfs:comment "Leerstehende Wohnungen"@de ; rdfs:label "Empty dwellings"@en ; rdfs:label "Leere Wohnungen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:empty_conventional_dwellings rdfs:subPropertyOf :empty_conventional_dwellings . :no_people_in_accommodation_for_the_homeless a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of people in accomodation for the homeless"@en ; rdfs:comment "Anzahl der Menschen in Unterkünften für Obdachlose"@de ; rdfs:label "People in accomodation for homeless"@en ; rdfs:label "Menschen in Unterkünften für Obdachlose"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_people_in_accommodation_for_the_homeless rdfs:subPropertyOf :no_people_in_accommodation_for_the_homeless . :average_annual_rent_for_housing_per_m2 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Average annual rent for housing per square meter (m2)"@en ; rdfs:comment "Jährliche durchschnittliche Miete für eine Unterkunft pro Quadratmeter (m2)"@de ; rdfs:label "Rent for housing (per m2)"@en ; rdfs:label "Miete für Unterkunft (per m2)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:average_annual_rent_for_housing_per_m2 rdfs:subPropertyOf :average_annual_rent_for_housing_per_m2 . :average_price_for_buying_a_house a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Average price for buying a house"@en ; rdfs:comment "Durchschnittlicher Preis für den Kauf eines Hauses"@de ; rdfs:label "Average house price"@en ; rdfs:label "Durchschnittlicher Haus-Preis"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:average_price_for_buying_a_house rdfs:subPropertyOf :average_price_for_buying_a_house . :average_price_for_buying_an_apartment a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Average price for buying an apartment"@en ; rdfs:comment "Durchschnittlicher Preis für den Kauf einer Wohnung"@de ; rdfs:label "Average apartment price"@en ; rdfs:label "Durchschnittlicher Wohnungs-Kaufpreis"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:average_price_for_buying_an_apartment rdfs:subPropertyOf :average_price_for_buying_an_apartment . :infant_mortality_rate_per_1000 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons/1000 live births" ; rdfs:comment "Infant mortality rate (per 1000 live births)"@en ; rdfs:comment "Säuglingssterblichkeitsrate (je 1000 Lebendgeburten)"@de ; rdfs:label "Infant mortality rate (per 1000 live births)"@en ; rdfs:label "Säuglingssterblichkeitsrate (je 1000 Lebendgeburten)"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:infant_mortality_rate_per_1000_live_births rdfs:subPropertyOf :infant_mortality_rate_per_1000 . wb:mortality_rate_infant_per_1000_live_births rdfs:subPropertyOf :infant_mortality_rate_per_1000 . :infant_mortality_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Infant mortality rate (per year)"@en ; rdfs:comment "Säuglingssterblichkeitsrate (pro Jahr)"@de ; rdfs:label "Infant mortality rate"@en ; rdfs:label "Säuglingssterblichkeitsrate"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:infant_mortality_per_year rdfs:subPropertyOf :infant_mortality_per_year . :no_live_births_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of live births per year"@en ; rdfs:comment "Anzahl der Lebendgeburten"@de ; rdfs:label "Live births"@en ; rdfs:label "Lebendgeburten"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_live_births_per_year rdfs:subPropertyOf :no_live_births_per_year . :mortality_rate_for_individuals_under_65_from_heart_diseases_and_respiratory_illness a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Mortality rate for individuals under 65 from heart diseases and respiratory illness"@en ; rdfs:comment "Sterblichkeitsrate für Menschen unter 65 an Herz- oder Atemwegs-Krankheiten"@de ; rdfs:label "Mortality rate heart diseases and respiratory illness <65"@en ; rdfs:label "Sterblichkeitsrate Herz- oder Atemwegs-Krankheiten <65"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:mortality_rate_for_individuals_under_65_from_heart_diseases_and_respiratory_illness rdfs:subPropertyOf :mortality_rate_for_individuals_under_65_from_heart_diseases_and_respiratory_illness . :no_deaths_per_year_under_65_due_to_diseases_of_the_circulatory_or_respiratory_systems a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of deaths per year under 65 due to diseases of the circularoty or respiratory systems"@en ; rdfs:comment "Anzahl der Tode pro Jahr unter 65 wegen Krankheiten an Kreislauf- oder Atemwegssystemen"@de ; rdfs:label "Deaths due to circulatory or respiratory systems <65"@en ; rdfs:label "Tode wegen Kreislauf- oder Atemwegssystemen <65"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:no_deaths_per_year_under_65_due_to_diseases_of_the_circulatory_or_respiratory_systems rdfs:subPropertyOf :no_deaths_per_year_under_65_due_to_diseases_of_the_circulatory_or_respiratory_systems . :mortality_rate_for_under_65_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Mortality rate for people under 65 per year"@en ; rdfs:comment "Sterblichkeitsrate für Menschen unter 65 pro Jahr"@de ; rdfs:label "Mortality rate <65"@en ; rdfs:label "Sterblichkeitsrate <65"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:mortality_rate_for_under_65_per_year rdfs:subPropertyOf :mortality_rate_for_under_65_per_year . :mortality_rate_for_under_65_per_year_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Mortality rate for people under 65 per year male"@en ; rdfs:comment "Sterblichkeitsrate für Menschen unter 65 pro Jahr männlich"@de ; rdfs:label "Mortality rate <65 male"@en ; rdfs:label "Sterblichkeitsrate <65 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:mortality_rate_for_under_65_per_year_male rdfs:subPropertyOf :mortality_rate_for_under_65_per_year_male . :mortality_rate_for_under_65_per_year_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Mortality rate for people under 65 per year female"@en ; rdfs:comment "Sterblichkeitsrate für Menschen unter 65 pro Jahr weiblich"@de ; rdfs:label "Mortality rate <65 female"@en ; rdfs:label "Sterblichkeitsrate <65 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . urbanaudit:mortality_rate_for_under_65_per_year_female rdfs:subPropertyOf :mortality_rate_for_under_65_per_year_female . :total_deaths_under_65_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total deaths under 65 per year"@en ; rdfs:comment "Tote gesamt unter 65 pro Jahr"@de ; rdfs:label "Deaths <65"@en ; rdfs:label "Tote <65"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:total_deaths_under_65_per_year rdfs:subPropertyOf :total_deaths_under_65_per_year . :total_deaths_under_65_per_year_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total deaths under 65 per year male"@en ; rdfs:comment "Tote gesamt unter 65 pro Jahr männlich"@de ; rdfs:label "Deaths <65 male"@en ; rdfs:label "Tote <65 männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:total_deaths_under_65_per_year_male rdfs:subPropertyOf :total_deaths_under_65_per_year_male . :total_deaths_under_65_per_year_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total deaths under 65 per year female"@en ; rdfs:comment "Tote gesamt unter 65 pro Jahr weiblich"@de ; rdfs:label "Deaths <65 female"@en ; rdfs:label "Tote <65 weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:total_deaths_under_65_per_year_female rdfs:subPropertyOf :total_deaths_under_65_per_year_female . :total_deaths_per_year a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total deaths per year"@en ; rdfs:comment "Tote gesamt pro Jahr"@de ; rdfs:label "Deaths"@en ; rdfs:label "Tote"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:total_deaths_per_year rdfs:subPropertyOf :total_deaths_per_year . :total_deaths_per_year_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total deaths per year male"@en ; rdfs:comment "Tote gesamt pro Jahr männlich"@de ; rdfs:label "Deaths male"@en ; rdfs:label "Tote männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:total_deaths_per_year_male rdfs:subPropertyOf :total_deaths_per_year_male . :total_deaths_per_year_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Total deaths per year female"@en ; rdfs:comment "Tote gesamt pro Jahr weiblich"@de ; rdfs:label "Deaths female"@en ; rdfs:label "Tote weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:total_deaths_per_year_female rdfs:subPropertyOf :total_deaths_per_year_female . :crude_birth_rate_per_1000 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons/1000 inhabitants" ; rdfs:comment "Crude birth rate per 1000 inhabitants"@en ; rdfs:comment "Geburtenziffer je 1000 Einwohner"@de ; rdfs:label "Crude birth rate"@en ; rdfs:label "Geburtenziffer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . wb:birth_rate_crude_per_1000_people rdfs:subPropertyOf :crude_birth_rate_per_1000 . urbanaudit:crude_birth_rate_per_1000_inhabitants rdfs:subPropertyOf :crude_birth_rate_per_1000 . :crude_death_rate_per_1000 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons/1000 inhabitants" ; rdfs:comment "Crude death rate per 1000 inhabitants"@en ; rdfs:comment "Todesziffer je 1000 Einwohner"@de ; rdfs:label "Crude death rate"@en ; rdfs:label "Todesziffer"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . wb:death_rate_crude_per_1000_people rdfs:subPropertyOf :crude_death_rate_per_1000 . urbanaudit:crude_death_rate_per_1000_inhabitants rdfs:subPropertyOf :crude_death_rate_per_1000 . :homicides a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of murders and violent deaths"@en ; rdfs:comment "Anzahl der Morde und gewaltsamer Todesfälle"@de ; rdfs:label "Homicides"@en ; rdfs:label "Tötungsdelikte"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :SocialAspects . urbanaudit:no_murders_and_violent_deaths rdfs:subPropertyOf :homicides . ode:homicides rdfs:subPropertyOf :homicides . ############################################# # CALCULATED data.un.org INDICATOERS :share_of_occupants_in_dwellings_with_basic_facilities a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupants in dwellings with basic facilities"@en ; rdfs:comment "Anteil der Bewohner in Wohnungen mit Grundausstattung"@de ; :unit "%"; rdfs:label "Occupants in dwellings with basic facilities"@en; rdfs:label "Bewohner in Wohnungen mit Grundausstattung"@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupants_in_dwellings_with_basic_facilities a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupants in dwellings with basic facilities"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupants in dwellings with basic facilities"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupants_in_dwellings_without_basic_facilities a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupants in dwellings without basic facilities"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupants in dwellings without basic facilities"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_piped_water_inside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with piped water inside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with piped water inside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_piped_water_outside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with piped water outside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with piped water outside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_piped_water_inside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with piped water inside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with piped water inside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_piped_water_outside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with piped water outside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with piped water outside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_piped_water_inside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with piped water inside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with piped water inside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_piped_water_outside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with piped water outside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with piped water outside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_piped_water_inside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with piped water inside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with piped water inside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_piped_water_outside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with piped water outside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with piped water outside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_fixed_bath_inside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with fixed bath inside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with fixed bath inside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_fixed_bath_outside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with fixed bath outside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with fixed bath outside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_without_fixed_bath a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units without fixed bath"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units without fixed bath"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_fixed_bath_inside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with fixed bath inside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with fixed bath inside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_fixed_bath_outside a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with fixed bath outside"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with fixed bath outside"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_without_fixed_bath a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings without fixed bath"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings without fixed bath"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_with_kitchen a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings with kitchen"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings with kitchen"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_without_kitchen a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings without kitchen"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings without kitchen"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_kitchen a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with kitchen"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with kitchen"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_without_kitchen a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units without kitchen"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units without kitchen"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_with_lighting_with_elecricity a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units with lighting with elecricity"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units with lighting with elecricity"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_without_lighting a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units without lighting"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units without lighting"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_households_in_conventional_dwellings_tenure_owned a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of households in conventional dwellings tenure owned"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Households in conventional dwellings tenure owned"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_households_in_conventional_dwellings_tenure_rented a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of households in conventional dwellings tenure rented"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Households in conventional dwellings tenure rented"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_households_in_conventional_dwellings_tenure_occupied_free_of_rent a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of households in conventional dwellings tenure occupied free of rent"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Households in conventional dwellings tenure occupied free of rent"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_households_in_housing_units_tenure_owned a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of households in housing units tenure owned"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Households in housing units tenure owned"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_households_in_housing_units_tenure_rented a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of households in housing units tenure rented"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Households in housing units tenure rented"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_households_in_housing_units_tenure_occupied_free_of_rent a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of households in housing units tenure occupied free of rent"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Households in housing units tenure occupied free of rent"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_1_room a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 1 room"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 1 room"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_2_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 2 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 2 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_3_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 3 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 3 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_4_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 4 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 4 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_5_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 5 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 5 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_6_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 6 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 6 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_7_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 7 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 7 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_8_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 8 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 8 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_9_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 9 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 9 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_conventional_dwellings_10_or_more_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied conventional dwellings 10 or more rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied conventional dwellings 10 or more rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_1_room a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 1 room"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 1 room"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_2_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 2 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 2 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_3_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 3 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 3 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_4_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 4 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 4 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_5_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 5 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 5 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_6_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 6 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 6 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_7_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 7 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 7 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_8_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 8 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 8 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_9_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 9 rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 9 rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . :share_of_occupied_housing_units_10_or_more_rooms a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Share of occupied housing units 10 or more rooms"@en ; rdfs:comment ""@de ; :unit "%"; rdfs:label "Occupied housing units 10 or more rooms"@en; rdfs:label ""@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :SocialAspects . ############################################# # TRAINING AND EDUCATION INDICATORS :no_children_0-4_in_day_care_publ_and_priv_per_1000_children_0-4 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "‰" ; rdfs:comment "Number of children aged 0-4 in day care (public and private) per 1000 children aged 0-4"@en ; rdfs:comment "Anzahl der 0-4-Jährigen in Kinderbetreuung (öffentlich und privat) pro 1000 0-4-Jährige"@de ; rdfs:label "Proportion children in day care"@en ; rdfs:label "Anteil Kinder in Kinderbetreuung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TrainingAndEducation . urbanaudit:no_children_0-4_in_day_care_publ_and_priv_per_1000_children_0-4 rdfs:subPropertyOf :no_children_0-4_in_day_care_publ_and_priv_per_1000_children_0-4 . :no_children_0-4_in_day_care_or_school a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Number of children aged 0-4 in day care or school"@en ; rdfs:comment "Anzahl der 0-4-Jährigen in Kinderbetreuung oder Schule"@de ; rdfs:label "Children in day care or school"@en ; rdfs:label "Kinder in Kinderbetreuung oder Schule"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:no_children_0-4_in_day_care_or_school rdfs:subPropertyOf :no_children_0-4_in_day_care_or_school . :students_in_higher_education_isced_level_5-6_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Students in higher education (ISCED level 5-6) total"@en ; rdfs:comment "Studenten in Hochschulbildung (ISCED level 5-6) gesamt"@de ; rdfs:label "Students higher education"@en ; rdfs:label "Studenten Hochschulbildung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:students_in_higher_education_isced_level_5-6_total rdfs:subPropertyOf :students_in_higher_education_isced_level_5-6_total . :students_in_higher_education_isced_level_5-6_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Students in higher education (ISCED level 5-6) male"@en ; rdfs:comment "Studenten in Hochschulbildung (ISCED level 5-6) männlich"@de ; rdfs:label "Students higher education male"@en ; rdfs:label "Studenten Hochschulbildung männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:students_in_higher_education_isced_level_5-6_male rdfs:subPropertyOf :students_in_higher_education_isced_level_5-6_male . :students_in_higher_education_isced_level_5-6_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Students in higher education (ISCED level 5-6) female"@en ; rdfs:comment "Studenten in Hochschulbildung (ISCED level 5-6) weiblich"@de ; rdfs:label "Students higher education female"@en ; rdfs:label "Studenten Hochschulbildung weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:students_in_higher_education_isced_level_5-6_female rdfs:subPropertyOf :students_in_higher_education_isced_level_5-6_female . :early_leavers_from_education_and_training_total a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Early leavers from education and training total"@en ; rdfs:comment "Schulabbrecher gesamt"@de ; rdfs:label "Early leavers"@en ; rdfs:label "Schulabbrecher"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:early_leavers_from_education_and_training_total rdfs:subPropertyOf :early_leavers_from_education_and_training_total . :early_leavers_from_education_and_training_male a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Early leavers from education and training male"@en ; rdfs:comment "Schulabbrecher männlich"@de ; rdfs:label "Early leavers male"@en ; rdfs:label "Schulabbrecher männlich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:early_leavers_from_education_and_training_male rdfs:subPropertyOf :early_leavers_from_education_and_training_male . :early_leavers_from_education_and_training_female a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Early leavers from education and training female"@en ; rdfs:comment "Schulabbrecher weiblich"@de ; rdfs:label "Early leavers female"@en ; rdfs:label "Schulabbrecher weiblich"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:early_leavers_from_education_and_training_female rdfs:subPropertyOf :early_leavers_from_education_and_training_female . :persons_aged_25-64_with_isced_level_0_1or_2_as_the_highest_level_of_education a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Persons aged 25-64 with ISCED level 0, 1 or 2 as the highest level of education"@en ; rdfs:comment "Personen im Alter von 25-64 mit ISCED-Level 0, 1 oder 2 als höchste abgeschlossene Ausbildung"@de ; rdfs:label "Persons 25-64 with minor education"@en ; rdfs:label "Personen 25-64 mit geringer Ausbildung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:persons_aged_25-64_with_isced_level_0_1or_2_as_the_highest_level_of_education rdfs:subPropertyOf :persons_aged_25-64_with_isced_level_0_1or_2_as_the_highest_level_of_education . :proportion_of_working_age_population_qualified_at_level_3_or_4_isced a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of working age population qualified at ISCED level 3 or 4"@en ; rdfs:comment "Anteil der Bevölkerung im arbeitsfähigen Alter mit Ausbildung auf ISCED-Level 3 oder 4"@de ; rdfs:label "Proportion working age persons with medium education"@en ; rdfs:label "Anteil Personen im arbeitsfähigen Alter mit mittlerer Ausbildung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TrainingAndEducation . urbanaudit:proportion_of_working_age_population_qualified_at_level_3_or_4_isced rdfs:subPropertyOf :proportion_of_working_age_population_qualified_at_level_3_or_4_isced . :persons_aged_25-64_with_isced_level_3_or_4_as_the_highest_level_of_education a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "Persons aged 25-64 with ISCED level 3 or 4 as the highest level of education"@en ; rdfs:comment "Personen im Alter von 25-64 mit ISCED-Level 3 oder 4 als höchste abgeschlossene Ausbildung"@de ; rdfs:label "Persons 25-64 with medium education"@en ; rdfs:label "Personen 25-64 mit mittlerer Ausbildung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TrainingAndEducation . urbanaudit:persons_aged_25-64_with_isced_level_3_or_4_as_the_highest_level_of_education rdfs:subPropertyOf :persons_aged_25-64_with_isced_level_3_or_4_as_the_highest_level_of_education . :proportion_of_working_age_population_qualified_at_level_5_or_6_isced a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of working age population qualified at ISCED level 5 or 6"@en ; rdfs:comment "Anteil der Bevölkerung im arbeitsfähigen Alter mit Ausbildung auf ISCED-Level 5 oder 6"@de ; rdfs:label "Proportion working age persons with higher education"@en ; rdfs:label "Anteil Personen im arbeitsfähigen Alter mit höherer Ausbildung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TrainingAndEducation . urbanaudit:proportion_of_working_age_population_qualified_at_level_5_or_6_isced rdfs:subPropertyOf :proportion_of_working_age_population_qualified_at_level_5_or_6_isced . :persons_aged_25-64_with_isced_level_5_or_6_as_the_highest_level_of_education a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Proportion of working age population qualified at ISCED level 5 or 6"@en ; rdfs:comment "Anteil der Bevölkerung im arbeitsfähigen Alter mit Ausbildung auf ISCED-Level 5 oder 6"@de ; rdfs:label "Working age persons with higher education"@en ; rdfs:label "Personen im arbeitsfähigen Alter mit höherer Ausbildung"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TrainingAndEducation . urbanaudit:persons_aged_25-64_with_isced_level_5_or_6_as_the_highest_level_of_education rdfs:subPropertyOf :persons_aged_25-64_with_isced_level_5_or_6_as_the_highest_level_of_education . ############################################# # TRAVEL AND TRANSPORT INDICATORS :percentage_of_journeys_to_work_by_car a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of journeys to work by car"@en ; rdfs:comment "Anteil der Fahrten zur Arbeit mit dem Auto"@de ; rdfs:label "Proportion commute by car"@en ; rdfs:label "Anteil Autofahrten zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:percentage_of_journeys_to_work_by_car rdfs:subPropertyOf :percentage_of_journeys_to_work_by_car . :percentage_of_journeys_to_work_by_motor_cycle a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of journeys to work by motor cycle"@en ; rdfs:comment "Anteil der Fahrten zur Arbeit mit dem Motorrad"@de ; rdfs:label "Proportion commute by motor cycle"@en ; rdfs:label "Anteil Motorrad-Fahrten zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:percentage_of_journeys_to_work_by_motor_cycle rdfs:subPropertyOf :percentage_of_journeys_to_work_by_motor_cycle . :percentage_of_journeys_to_work_by_bicycle a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of journeys to work by bicycle"@en ; rdfs:comment "Anteil der Fahrten zur Arbeit mit dem Fahrrad"@de ; rdfs:label "Proportion commute by bicycle"@en ; rdfs:label "Anteil Fahrrad-Fahrten zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:percentage_of_journeys_to_work_by_bicycle rdfs:subPropertyOf :percentage_of_journeys_to_work_by_bicycle . :percentage_of_journeys_to_work_by_foot a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of journeys to work by foot"@en ; rdfs:comment "Anteil der Wege zur Arbeit zu Fuß"@de ; rdfs:label "Proportion commute by foot"@en ; rdfs:label "Anteil Fußgänge zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:percentage_of_journeys_to_work_by_foot rdfs:subPropertyOf :percentage_of_journeys_to_work_by_foot . :percentage_of_journeys_to_work_by_public_transport_rail_metro_bus_tram a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of journeys to work by public transport (rail, metro, bus, tram)"@en ; rdfs:comment "Anteil der Fahrten zur Arbeit mit den öffentlichen Verkehrsmitteln (Zug, U-Bahn, Bus, Straßenbahn)"@de ; rdfs:label "Proportion commute by public transport"@en ; rdfs:label "Anteil öffentliche Fahrten zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:percentage_of_journeys_to_work_by_public_transport_rail_metro_bus_tram rdfs:subPropertyOf :percentage_of_journeys_to_work_by_public_transport_rail_metro_bus_tram . :percentage_of_journeys_to_work_by_car_or_motor_cycle a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Percentage of journeys to work by car or motor cycle"@en ; rdfs:comment "Anteil der Fahrten zur Arbeit mit dem Auto oder Motorrad"@de ; rdfs:label "Proportion commute by car or motor cycle"@en ; rdfs:label "Anteil Auto- oder Motorrad-Fahrten zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:percentage_of_journeys_to_work_by_car_or_motor_cycle rdfs:subPropertyOf :percentage_of_journeys_to_work_by_car_or_motor_cycle . :average_time_of_journey_to_work_minutes a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "minutes" ; rdfs:comment "Average time of journey to work in minutes"@en ; rdfs:comment "Durchschnittliche Zeit für den Weg zur Arbeit in Minuten"@de ; rdfs:label "Commute duration"@en ; rdfs:label "Dauer Weg zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:average_time_of_journey_to_work_minutes rdfs:subPropertyOf :average_time_of_journey_to_work_minutes . :average_length_of_journey_to_work_by_private_car_km a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km" ; rdfs:comment "Average length of journey to work by private car in km"@en ; rdfs:comment "Durchschnittliche Länge des Weges zur Arbeit in km"@de ; rdfs:label "Commute distance"@en ; rdfs:label "Distanz Weg zur Arbeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:average_length_of_journey_to_work_by_private_car_km rdfs:subPropertyOf :average_length_of_journey_to_work_by_private_car_km . :no_motor_cycles_registered a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of registered motor cycles"@en ; rdfs:comment "Anzahl der registrierten Motorräder"@de ; rdfs:label "Motor cycles"@en ; rdfs:label "Motorräder"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:no_motor_cycles_registered rdfs:subPropertyOf :no_motor_cycles_registered . :no_registered_motor_cycles_per_1000_population a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of registered motor cycles per 1000 population"@en ; rdfs:comment "Anzahl der registrierten Motorräder pro 1000 Personen"@de ; rdfs:label "Motor cycles per 1000 population"@en ; rdfs:label "Motorräder je 1000 Personen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:no_registered_motor_cycles_per_1000_population rdfs:subPropertyOf :no_registered_motor_cycles_per_1000_population . :cars_per_1000 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of registered cars per 1000 population"@en ; rdfs:comment "Anzahl der registrierten Autos pro 1000 Personen"@de ; rdfs:label "Cars per 1000 population"@en ; rdfs:label "Autos je 1000 Personen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:no_registered_cars_per_1000_population rdfs:subPropertyOf :cars_per_1000 . wb:passenger_cars_per_1000_people rdfs:subPropertyOf :cars_per_1000 . :no_private_cars_registered a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of private cars registered"@en ; rdfs:comment "Anzahl der registrierten Autos (PKW)"@de ; rdfs:label "Cars"@en ; rdfs:label "Autos"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TravelAndTransport . urbanaudit:no_private_cars_registered rdfs:subPropertyOf :no_private_cars_registered . :people_killed_in_road_accidents_per_10000_pop a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons/10000 persons" ; rdfs:comment "People killed in road accidents per 10000 population"@en ; rdfs:comment "Verkehrstote pro 10000 Personen"@de ; rdfs:label "People killed in road accidents per 1000 population"@en ; rdfs:label "Verkehrstote pro 10000 Personen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:people_killed_in_road_accidents_per_10000_pop rdfs:subPropertyOf :people_killed_in_road_accidents_per_10000_pop . :no_deaths_in_road_accidents a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "no" ; rdfs:comment "Number of deaths in road accidents"@en ; rdfs:comment "Verkehrstote"@de ; rdfs:label "Deaths in road accidents"@en ; rdfs:label "Verkehrstote"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TravelAndTransport . urbanaudit:no_deaths_in_road_accidents rdfs:subPropertyOf :no_deaths_in_road_accidents . :people_commuting_into_the_city a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "People commuting into the city"@en ; rdfs:comment "Anzahl Personen, die in die Stadt pendeln"@de ; rdfs:label "Incoming commuters"@en ; rdfs:label "Pendler in die Stadt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TravelAndTransport . urbanaudit:people_commuting_into_the_city rdfs:subPropertyOf :people_commuting_into_the_city . :people_commuting_out_of_the_city a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "persons" ; rdfs:comment "People commuting out of the city"@en ; rdfs:comment "Anzahl Personen, die aus der Stadt herauspendeln"@de ; rdfs:label "Outgoing commuters"@en ; rdfs:label "Pendler aus der Stadt"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:integer ; :category :TravelAndTransport . urbanaudit:people_commuting_out_of_the_city rdfs:subPropertyOf :people_commuting_out_of_the_city . :accessibility_by_air_eu27_is_100 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Accessibility by air (EU27 is 100)"@en ; rdfs:comment "Erreichbarkeit per Flugzeug (EU27 ist 100)"@de ; rdfs:label "Accessibility by air"@en ; rdfs:label "Erreichbarkeit per Flugzeug"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:accessibility_by_air_eu27_is_100 rdfs:subPropertyOf :accessibility_by_air_eu27_is_100 . :accessibility_by_rail_eu27_is_100 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Accessibility by rail (EU27 is 100)"@en ; rdfs:comment "Erreichbarkeit per Zug (EU27 ist 100)"@de ; rdfs:label "Accessibility by rail"@en ; rdfs:label "Erreichbarkeit per Zug"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:accessibility_by_rail_eu27_is_100 rdfs:subPropertyOf :accessibility_by_rail_eu27_is_100 . :accessibility_by_road_eu27_is_100 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Accessibility by road (EU27 is 100)"@en ; rdfs:comment "Erreichbarkeit per Auto (EU27 ist 100)"@de ; rdfs:label "Accessibility by road"@en ; rdfs:label "Erreichbarkeit per Auto"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:accessibility_by_road_eu27_is_100 rdfs:subPropertyOf :accessibility_by_road_eu27_is_100 . :multimodal_accessibility_eu27_is_100 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "%" ; rdfs:comment "Multimodal accessibility (EU27 is 100)"@en ; rdfs:comment "Multimodale Erreichbarkeit (EU27 ist 100)"@de ; rdfs:label "Multimodal accessibility"@en ; rdfs:label "Multimodale Erreichbarkeit"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:multimodal_accessibility_eu27_is_100 rdfs:subPropertyOf :multimodal_accessibility_eu27_is_100 . :length_of_bicycle_network_dedicated_cycle_paths_and_lanes a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km" ; rdfs:comment "Length of bicycle network (dedicated cycle paths and lanes)"@en ; rdfs:comment "Länge des Radfahrweg-Netzwerks (Radwege und Radspuren)"@de ; rdfs:label "Bicycle network length"@en ; rdfs:label "Länge des Radfahrweg-Netzwerks"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:length_of_bicycle_network_dedicated_cycle_paths_and_lanes rdfs:subPropertyOf :length_of_bicycle_network_dedicated_cycle_paths_and_lanes . :cost_of_a_combined_monthly_ticket_all_modes_of_public_transport_for_5-10_km_in_the_central_zone a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Cost of a combined monthly ticket (all modes of public transport for 5-10 km in the central zone)"@en ; rdfs:comment "Kosten eines kombinierten Monats-Tickets (alle öffentlichen Verkehrsmittel für 5-10 km im Zentrum)"@de ; rdfs:label "Price public transport"@en ; rdfs:label "Preis öffentlicher Verkehr"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:cost_of_a_combined_monthly_ticket_all_modes_of_public_transport_for_5-10_km_in_the_central_zone rdfs:subPropertyOf :cost_of_a_combined_monthly_ticket_all_modes_of_public_transport_for_5-10_km_in_the_central_zone . :cost_of_a_taxi_ride_of_5_km_to_the_centre_at_day_time a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "EUR" ; rdfs:comment "Cost of a taxi ride of 5km to the center at day time"@en ; rdfs:comment "Preis für eine Taxifahrt von 5km ins Zentrum tagsüber"@de ; rdfs:label "Price taxi"@en ; rdfs:label "Taxipreis"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :TravelAndTransport . urbanaudit:cost_of_a_taxi_ride_of_5_km_to_the_centre_at_day_time rdfs:subPropertyOf :cost_of_a_taxi_ride_of_5_km_to_the_centre_at_day_time . ############################################# # GEOGRAPHY INDICATORS :area a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Total spatial area in km2 (according to cadastral register)"@en ; rdfs:comment "Gesamtfläche in km2 (laut Grundbuch)"@de ; rdfs:label "Area"@en ; rdfs:label "Fläche"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . urbanaudit:total_land_area_km2_according_to_cadastral_register rdfs:subPropertyOf :area . rdfs:subPropertyOf :area . rdfs:subPropertyOf :area . #wb:land_area_sq._km #rdfs:subPropertyOf :area . :areaLand a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Total land area in km2 (without water)"@en ; rdfs:comment "Landfläche gesamt in km2 (ohne Gewässer)"@de ; rdfs:label "Land area"@en ; rdfs:label "Landfläche"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . rdfs:subPropertyOf :areaLand . rdfs:subPropertyOf :areaLand . :areaWater a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Total water area in km2"@en ; rdfs:comment "Gewässerfläche gesamt in km2"@de ; rdfs:label "Water area"@en ; rdfs:label "Gewässerfläche"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . urbanaudit:water_and_wetland rdfs:subPropertyOf :areaWater . rdfs:subPropertyOf :areaWater . rdfs:subPropertyOf :areaWater . :land_used_for_agricultural_purposes a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Land used for agricultural purposes in km2"@en ; rdfs:comment "Landwirtschaftlich genutzte Fläche in km2"@de ; rdfs:label "Agricultural area"@en ; rdfs:label "Landwirtschaftsfläche"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . urbanaudit:land_used_for_agricultural_purposes rdfs:subPropertyOf :land_used_for_agricultural_purposes . :other_land_use a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Other land use"@en ; rdfs:comment "Anders genutzte Fläche"@de ; rdfs:label "Other land use"@en ; rdfs:label "Anders genutzte Fläche"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . urbanaudit:other_land_use rdfs:subPropertyOf :other_land_use . :green_space_to_which_the_public_has_access a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Green space to which the public has accces in km2"@en ; rdfs:comment "Der Öffentlichkeit zugängliche Grünflächen in km2"@de ; rdfs:label "Public Green Space"@en ; rdfs:label "Öffentliche Grünflächen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . urbanaudit:green_space_to_which_the_public_has_access rdfs:subPropertyOf :green_space_to_which_the_public_has_access . :green_space_area_km2 a owl:DatatypeProperty, rdfs:Property , :Indicator ; :unit "km2" ; rdfs:comment "Green space area in km2"@en ; rdfs:comment "Grünflächen in km2"@de ; rdfs:label "Green Space"@en ; rdfs:label "Grünflächen"@de ; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . urbanaudit:green_space_area_km2 rdfs:subPropertyOf :green_space_area_km2 . :elevation a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Average elevation above sea level in meters"@en ; rdfs:comment "Durchschnittliche Meereshöhe in Metern"@de ; :unit "m"; rdfs:label "Elevation"@en; rdfs:label "Meereshöhe"@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . dbpedia-owl:elevation rdfs:subPropertyOf :elevation . rdfs:subPropertyOf :elevation . :elevationMax a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Maximum elevation above sea level in meters"@en ; rdfs:comment "Höchster Punkt (Meereshöhe) in Metern"@de ; :unit "m"; rdfs:label "Elevation maximum"@en; rdfs:label "Meereshöhe maximal"@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . dbpedia-owl:maximumElevation rdfs:subPropertyOf :elevationMax . rdfs:subPropertyOf :elevationMax . rdfs:subPropertyOf :elevationMax . rdfs:subPropertyOf :elevationMax . :elevationMin a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Minimal elevation above sea level in meters"@en ; rdfs:comment "Niedrigster Punkt (Meereshöhe) in Metern"@de ; :unit "m"; rdfs:label "Elevation minimum"@en; rdfs:label "Meereshöhe minimal"@de; rdfs:domain :CityDataContext ; rdfs:range xsd:decimal ; :category :Geography . dbpedia-owl:minimumElevation rdfs:subPropertyOf :elevationMin . rdfs:subPropertyOf :elevationMin . rdfs:subPropertyOf :elevationMin . :latitude a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Latitude"@en ; rdfs:comment "Breitengrad"@de ; :unit ""; rdfs:label "Latitude"@en; rdfs:label "Breitengrad"@de; rdfs:domain :CityDataContext ; rdfs:range rdfs:Literal ; :category :Geography . rdfs:subPropertyOf :latitude . :longitude a owl:DatatypeProperty, rdfs:Property , :Indicator ; rdfs:comment "Longitude"@en ; rdfs:comment "Längengrad"@de ; :unit ""; rdfs:label "Longitude"@en; rdfs:label "Längengrad"@de; rdfs:domain :CityDataContext ; rdfs:range rdfs:Literal ; :category :Geography . rdfs:subPropertyOf :longitude . # END OF INDICATORS ############################################# # BEGIN OF PREDICITON QUALITY INDICATORS ua:accumulated_ozone_concentration_in_excess_70_microgram_per_m3 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2167 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.7466680567 ; ] . ua:activity_rate :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2123 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5690880197 ; ] . ua:activity_rate_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1822 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.1254212949 ; ] . ua:activity_rate_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1815 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.825683961 ; ] . ua:all_companies :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2060 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2801156902 ; ] . ua:annual_average_concentration_of_no2_microgram_per_m3 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2343 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.0687131257 ; ] . ua:annual_average_concentration_of_pm10_microgram_per_m3 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2155 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.1039966132 ; ] . ua:average_area_of_living_accommodation_m2_per_person :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1404 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.1325395797 ; ] . ua:average_disposable_annual_household_income :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1021 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.4588602532 ; ] . ua:average_size_of_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1961 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.6565239107 ; ] . ua:cinema_attendance_per_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 931 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.7662020028 ; ] . ua:cost_of_a_combined_monthly_ticket_all_modes_of_public_transport_for_5.10_km_in_the_central_zone :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1569 ; :predictionPredictors 80 ; :estimatedRMSEPct 4.917917471 ; ] . ua:crude_birth_rate_per_1000_inhabitants :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3288 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.6333815864 ; ] . ua:crude_death_rate_per_1000_inhabitants :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3106 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9421605213 ; ] . ua:economically_active_population_55.64_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1723 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0466545576 ; ] . ua:economically_active_population_55.64_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1726 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.9492728461 ; ] . ua:economically_active_population_55.64_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1959 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.568365254 ; ] . ua:economically_active_population_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2516 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4537101378 ; ] . ua:economically_active_population_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2516 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4694407894 ; ] . ua:economically_active_population_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2826 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3747474727 ; ] . ua:employment_jobs_in_agriculture_fishery_nace_rev_2_a :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1899 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.692599725 ; ] . ua:employment_jobs_in_construction_nace_rev_2_f :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2088 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.2227765701 ; ] . ua:employment_jobs_in_mining_manufacturing_energy_nace_rev_2_b.e :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2079 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.5165418829 ; ] . ua:empty_conventional_dwellings :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1306 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2832319571 ; ] . ua:eu_foreigners :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2120 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.2904912948 ; ] . ua:eu_foreigners_as_a_proportion_of_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1938 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.1034917625 ; ] . ua:households_in_private_rented_housing :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1226 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6216083679 ; ] . ua:households_in_social_housing :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1223 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.188776612 ; ] . ua:households_owning_their_own_dwelling :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1698 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.088905429 ; ] . ua:households_with_children_aged_0_to_under_18 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2163 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0819616018 ; ] . ua:infant_mortality_per_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2515 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.259617661 ; ] . ua:infant_mortality_rate_per_1000_live_births :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2467 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.2535793307 ; ] . ua:length_of_bicycle_network_dedicated_cycle_paths_and_lanes :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 914 ; :predictionPredictors 80 ; :estimatedRMSEPct 8.8987104427 ; ] . ua:lone_parent_households_per_100_households_with_children_aged_0.17 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1597 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.3987042951 ; ] . ua:lone_parent_private_households_with_children_aged_0_to_under_18 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1689 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2197526328 ; ] . ua:lone_pensioner_above_retirement_age_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 1936 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.0686206215 ; ] . ua:median_disposable_annual_household_income :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 1120 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.6435108046 ; ] . ua:nationals :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2834 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4427571233 ; ] . ua:nationals_as_a_proportion_of_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2555 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.804007539 ; ] . ua:no_apartments :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1820 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0280401102 ; ] . ua:no_available_beds_per_1000_residents :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 1816 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.4173865752 ; ] . ua:no_bed.places_in_tourist__accommodation_establishments :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 2045 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.848230231 ; ] . ua:no_children_0.4_in_day_care_or_school :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1999 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0120394847 ; ] . ua:no_children_0.4_in_day_care_publ_and_priv_per_1000_children_0.4 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1775 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.3313321506 ; ] . ua:no_cinema_seats_per_1000_residents :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1250 ; :predictionPredictors 80 ; :estimatedRMSEPct 4.3724547096 ; ] . ua:no_cinema_seats_total_capacity :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1488 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.8285819637 ; ] . ua:no_conventional_dwellings :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3528 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6935491321 ; ] . ua:no_days_nitrogen_dioxide_no2_concentrations_exceed_200_microgram_per_m3 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2282 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2324852366 ; ] . ua:no_days_ozone_o3_concentrations_exceed_120_microgram_per_m3 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2212 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.8031104597 ; ] . ua:no_days_particulate_matter_pm10_concentrations_exceed_50_microgram_per_m3 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2157 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.2432672523 ; ] . ua:no_deaths_in_road_accidents :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3498 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.4257437215 ; ] . ua:no_deaths_per_year_under_65_due_to_diseases_of_the_circulatory_or_respiratory_systems :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2125 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0316679927 ; ] . ua:no_households_living_in_apartments :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1455 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6165060612 ; ] . ua:no_households_living_in_houses :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1463 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.5104141688 ; ] . ua:no_houses :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1828 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6770098587 ; ] . ua:no_live_births_per_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3582 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2492719609 ; ] . ua:no_private_cars_registered :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3218 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.848883492 ; ] . ua:no_public_libraries_all_distribution_points :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1860 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.3021846988 ; ] . ua:no_registered_cars_per_1000_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2967 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9952686246 ; ] . ua:no_theatres :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1504 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.1115016089 ; ] . ua:no_tourist_overnight_stays_in_reg_accommodation_per_year_per_resident_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2721 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.5006520976 ; ] . ua:non.eu_foreigners :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2122 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.8832146261 ; ] . ua:non.eu_foreigners_as_a_proportion_of_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1940 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.1187556481 ; ] . ua:old_age_dependency_ratio_population_65_and_over_to_population_20_to_64_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3203 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8569030174 ; ] . ua:one_person_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2378 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8766134768 ; ] . ua:people_commuting_into_the_city :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1342 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.529143254 ; ] . ua:people_commuting_out_of_the_city :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1317 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.3080758518 ; ] . ua:people_killed_in_road_accidents_per_10000_pop :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3178 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.7257951411 ; ] . ua:percentage_of_the_urban_waste_water_load_in_population_equivalents_treated_according_to_the_applicable_standard :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 963 ; :predictionPredictors 80 ; :estimatedRMSEPct 16.1215613579 ; ] . ua:persons_aged_25.64_with_isced_level_0_1or_2_as_the_highest_level_of_education :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1967 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7569485909 ; ] . ua:persons_aged_25.64_with_isced_level_3_or_4_as_the_highest_level_of_education :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1997 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8891369896 ; ] . ua:persons_aged_25.64_with_isced_level_5_or_6_as_the_highest_level_of_education :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1979 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.1924879847 ; ] . ua:population_change_over_1_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3072 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6692539587 ; ] . ua:population_living_in_private_households_excluding_institutional_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2059 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3824714077 ; ] . ua:population_on_the_1st_of_january_0.4_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2985 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8031403073 ; ] . ua:population_on_the_1st_of_january_0.4_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2985 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6695295983 ; ] . ua:population_on_the_1st_of_january_0.4_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4043 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4046159625 ; ] . ua:population_on_the_1st_of_january_15.19_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2987 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.644529081 ; ] . ua:population_on_the_1st_of_january_15.19_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2985 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5777756 ; ] . ua:population_on_the_1st_of_january_15.19_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4056 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.593769827 ; ] . ua:population_on_the_1st_of_january_20.24_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2983 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7367774187 ; ] . ua:population_on_the_1st_of_january_20.24_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2979 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7238008202 ; ] . ua:population_on_the_1st_of_january_20.24_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4071 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.606013134 ; ] . ua:population_on_the_1st_of_january_25.34_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2914 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5007522929 ; ] . ua:population_on_the_1st_of_january_25.34_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2941 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8242277101 ; ] . ua:population_on_the_1st_of_january_25.34_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3213 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3589691715 ; ] . ua:population_on_the_1st_of_january_35.44_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2915 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3677407691 ; ] . ua:population_on_the_1st_of_january_35.44_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2943 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3868815597 ; ] . ua:population_on_the_1st_of_january_35.44_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3252 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3520427667 ; ] . ua:population_on_the_1st_of_january_45.54_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2946 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4615601668 ; ] . ua:population_on_the_1st_of_january_45.54_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2946 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5204397023 ; ] . ua:population_on_the_1st_of_january_45.54_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3252 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.393811558 ; ] . ua:population_on_the_1st_of_january_55.64_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2985 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.556095067 ; ] . ua:population_on_the_1st_of_january_55.64_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2985 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4854943622 ; ] . ua:population_on_the_1st_of_january_55.64_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4063 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5070902256 ; ] . ua:population_on_the_1st_of_january_65.74_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2966 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8051707629 ; ] . ua:population_on_the_1st_of_january_65.74_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2984 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5230148225 ; ] . ua:population_on_the_1st_of_january_65.74_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4062 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3323699818 ; ] . ua:population_on_the_1st_of_january_75_years_and_over_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2953 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8252955575 ; ] . ua:population_on_the_1st_of_january_75_years_and_over_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2985 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6575089407 ; ] . ua:population_on_the_1st_of_january_75_years_and_over_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4057 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3273009934 ; ] . ua:population_on_the_1st_of_january_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3762 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4628100943 ; ] . ua:population_on_the_1st_of_january_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3759 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.2499461181 ; ] . ua:population_on_the_1st_of_january_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4082 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.2008794067 ; ] . ua:price_of_a_m3_of_domestic_water_euro :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 1280 ; :predictionPredictors 80 ; :estimatedRMSEPct 7.6783330971 ; ] . ua:private_households_excluding_institutional_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 2696 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.5248654154 ; ] . ua:proportion_households_that_are_lone.pensioner_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 1833 ; :predictionPredictors 80 ; :estimatedRMSEPct 5.9293611843 ; ] . ua:proportion_of_employment_in_agriculture_fishery :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1855 ; :predictionPredictors 80 ; :estimatedRMSEPct 5.1175917839 ; ] . ua:proportion_of_employment_in_construction_nace_rev11_f :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2023 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.8864967081 ; ] . ua:proportion_of_employment_in_industries_nace_rev11_c.e :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2017 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.0385213333 ; ] . ua:proportion_of_households_living_in_apartments :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1357 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.6846404097 ; ] . ua:proportion_of_households_living_in_houses :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1365 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.4758804544 ; ] . ua:proportion_of_households_living_in_owned_dwellings :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1529 ; :predictionPredictors 80 ; :estimatedRMSEPct 4.8774203664 ; ] . ua:proportion_of_households_that_are_1.person_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2210 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.1334363456 ; ] . ua:proportion_of_households_that_are_lone.parent_households :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1579 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.432316787 ; ] . ua:proportion_of_households_with_children_aged_0.17 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2072 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.2115975462 ; ] . ua:proportion_of_population_aged_0.4_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4035 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.9748728552 ; ] . ua:proportion_of_population_aged_15.19_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4048 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2010597291 ; ] . ua:proportion_of_population_aged_20.24_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4063 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.241422102 ; ] . ua:proportion_of_population_aged_25.34_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3213 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2162877718 ; ] . ua:proportion_of_population_aged_35.44_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3251 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.7209907704 ; ] . ua:proportion_of_population_aged_45.54_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3252 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6457839296 ; ] . ua:proportion_of_population_aged_65.74_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4054 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.1012490432 ; ] . ua:proportion_of_population_aged_75_years__and_over :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4048 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0799081341 ; ] . ua:proportion_of_total_population_aged_55.64 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 4054 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.3895279194 ; ] . ua:students_in_higher_education_isced_level_5.6_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2018 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.4411844436 ; ] . ua:students_in_higher_education_isced_level_5.6_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2028 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.5800269802 ; ] . ua:students_in_higher_education_isced_level_5.6_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3017 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3822551571 ; ] . ua:total_deaths_per_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3380 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4895231181 ; ] . ua:total_deaths_per_year_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2646 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6205504329 ; ] . ua:total_deaths_per_year_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2645 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0097933507 ; ] . ua:total_deaths_under_65_per_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2189 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.3443009625 ; ] . ua:total_deaths_under_65_per_year_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2246 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.0973883546 ; ] . ua:total_deaths_under_65_per_year_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2246 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6272463072 ; ] . ua:total_employment_divided_by_jobs_work_place_based :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2931 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6285230977 ; ] . ua:total_nights_spent_in_tourist_accommodation_establishments :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2953 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8688159283 ; ] . ua:women_per_100_men :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3759 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.5650906732 ; ] . ua:women_per_100_men_._aged_75_years__and_over :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2952 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9417335921 ; ] . ua:population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 957 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.5617494692 ; ] . ua:population_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 912 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6142400406 ; ] . ua:population_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 912 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.644691197 ; ] . ua:persons_unemployed_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3035 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.8142239734 ; ] . ua:persons_unemployed_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 3066 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7204074721 ; ] . ua:persons_unemployed_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2930 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.2950139129 ; ] . ua:unemployment_rate :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2707 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7618154206 ; ] . ua:unemployment_rate_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2293 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.0055719814 ; ] . ua:unemployment_rate_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2316 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.5409284202 ; ] . ua:median_population_age :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1820 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.8609062645 ; ] . ua:age_dependency_ratio_population_aged_0.19_and_65_and_more_to_population_aged_20.64 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2170 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.9926727957 ; ] . ua:economically_active_population_20.64_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1333 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4460074513 ; ] . ua:economically_active_population_20.64_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1333 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.517992939 ; ] . ua:economically_active_population_20.64_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1344 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3458644718 ; ] . ua:employment_jobs_in_arts_entertainment_and_recreation_other_service_activities_activities_of_household_and_extra.territorial_organizations_and_bodies_nace_rev_2_r_to_u :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1219 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.3608707848 ; ] . ua:employment_jobs_in_financial_and_insurance_activities_nace_rev_2_k :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1217 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.668810936 ; ] . ua:employment_jobs_in_information_and_communication_nace_rev_2_j :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1217 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9823149187 ; ] . ua:employment_jobs_in_professional_scientific_and_technical_activities_administrative_and_support_service_activities_nace_rev_2_m_and_n :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1218 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.4646110085 ; ] . ua:employment_jobs_in_public_administration_defence_education_human_health_and_social_work_activities_nace_rev_2_o_to_q :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1222 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.3445960113 ; ] . ua:employment_jobs_in_real_estate_activities_nace_rev_2_l :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1219 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.3620012115 ; ] . ua:employment_jobs_in_trade_transport_hotels_restaurants_nace_rev_2_g_to_i :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1223 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0738494503 ; ] . ua:municipal_waste_generated_domestic_and_commercial_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1382 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9969119527 ; ] . ua:persons_at_risk_of_poverty_after_social_transfers :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 455 ; :predictionPredictors 80 ; :estimatedRMSEPct 7.2777343395 ; ] . ua:persons_employed_20.64_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1715 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3368255931 ; ] . ua:persons_employed_20.64_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1704 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3790863354 ; ] . ua:persons_employed_20.64_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1703 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.2853481475 ; ] . ua:persons_employed_55.64_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1686 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7639587364 ; ] . ua:persons_employed_55.64_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1689 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.6717455646 ; ] . ua:persons_employed_55.64_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1701 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3486777356 ; ] . ua:population_on_the_1st_of_january_10.14_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2182 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3414362784 ; ] . ua:population_on_the_1st_of_january_10.14_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2183 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.484087519 ; ] . ua:population_on_the_1st_of_january_10.14_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2218 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.4369857022 ; ] . ua:population_on_the_1st_of_january_5.9_years_female :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2190 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3199326267 ; ] . ua:population_on_the_1st_of_january_5.9_years_male :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2188 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3676414005 ; ] . ua:population_on_the_1st_of_january_5.9_years_total :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2223 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3629791284 ; ] . ua:proportion_of_population_aged_10.14_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2208 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9688758035 ; ] . ua:proportion_of_population_aged_5.9_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2213 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.0733926613 ; ] . ua:share_of_population_connected_to_potable_drinking_water_system :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 829 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0592823287 ; ] . ua:share_of_population_connected_to_sewerage_treatment_system :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1033 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.6149884948 ; ] . ua:young.age_dependency_ratio_population_aged_0.19_to_population_20.64_years :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 2170 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.7274223666 ; ] . ua:foreign.born_in_a_eu_country :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1226 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.798163691 ; ] . ua:average_temperature_of_coldest_month :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1422 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9497020269 ; ] . ua:average_temperature_of_warmest_month :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1427 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.4340070538 ; ] . ua:cost_of_a_taxi_ride_of_5_km_to_the_centre_at_day_time :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 994 ; :predictionPredictors 80 ; :estimatedRMSEPct 5.0485523309 ; ] . ua:dwellings_lacking_basic_amenities :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 844 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9281282633 ; ] . ua:no_museum_visitors_per_year :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1708 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.6344861779 ; ] . ua:rainfall_litre_per_m2 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1428 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.9850665696 ; ] . ua:total_no_hours_of_sunshine_per_day :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1284 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.3736940723 ; ] . ua:total_use_of_water :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1488 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.2526221895 ; ] . ua:average_annual_rent_for_housing_per_m2 :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 929 ; :predictionPredictors 80 ; :estimatedRMSEPct 7.6424709526 ; ] . ua:average_price_for_buying_a_house :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1017 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.3833244799 ; ] . ua:average_price_for_buying_an_apartment :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1050 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.7535970307 ; ] . ua:foreigners :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1539 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.7738891661 ; ] . ua:foreigners_as_a_proportion_of_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1535 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.3333507822 ; ] . ua:average_length_of_journey_to_work_by_private_car_km :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 835 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.9968701398 ; ] . ua:average_time_of_journey_to_work_minutes :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 992 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.5461776672 ; ] . ua:no_people_in_accommodation_for_the_homeless :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 695 ; :predictionPredictors 80 ; :estimatedRMSEPct 4.1485598356 ; ] . ua:percentage_of_journeys_to_work_by_bicycle :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 831 ; :predictionPredictors 80 ; :estimatedRMSEPct 3.0887322331 ; ] . ua:percentage_of_journeys_to_work_by_car :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 846 ; :predictionPredictors 80 ; :estimatedRMSEPct 5.478171828 ; ] . ua:percentage_of_journeys_to_work_by_car_or_motor_cycle :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 946 ; :predictionPredictors 80 ; :estimatedRMSEPct 2.2487837762 ; ] . ua:percentage_of_journeys_to_work_by_foot :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 828 ; :predictionPredictors 80 ; :estimatedRMSEPct 5.4274074269 ; ] . ua:percentage_of_journeys_to_work_by_motor_cycle :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 833 ; :predictionPredictors 80 ; :estimatedRMSEPct 4.4652832044 ; ] . ua:percentage_of_journeys_to_work_by_public_transport_rail_metro_bus_tram :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodKNN ; :predictionSize 851 ; :predictionPredictors 80 ; :estimatedRMSEPct 8.5239029474 ; ] . ua:no_public_swimming_pools_indoor_and_outdoor_excluding_beaches :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1007 ; :predictionPredictors 80 ; :estimatedRMSEPct 5.2288941052 ; ] . ua:foreign.born :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1158 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.2617116924 ; ] . ua:foreign.born_as_a_proportion_of_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1147 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.9477741579 ; ] . ua:foreign.born_in_a_non.eu_country :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1203 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.4900248823 ; ] . ua:native.born :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1163 ; :predictionPredictors 80 ; :estimatedRMSEPct 0.3814648221 ; ] . ua:native.born_as_a_proportion_of_population :predictionContext [ a :Prediction ; :predictionApproach :StandardPCAPrediction ; :predictionMethod :PredictionMethodMLR ; :predictionSize 1152 ; :predictionPredictors 80 ; :estimatedRMSEPct 1.0006258091 ; ] . # END QUALITY ##################### Unit conversions ################################## # TODO: We may switch for units to something like http://qudt.org/ in the future. # # Unit conversions are special constraints for indicators which # are variants of another in terms of using different units that can be converted. # They may be viewed as syntactic shortcut for constraints involving the respective unit. # Integration with the constraints from above needs some thinking, since we have no property names for units. # Some small examples below, we will probably need an ontology for units as well: # # [] a :UnitConversion; # :unit "m"; # :unit "km"; # :conversion "1 * km = 1000 * m" . # # [] a :UnitConversion ; # :unit "km2" ; # :unit "m2" ; # :conversion "1 * km2 = 1000000 * m2 " . # # [] a :UnitConversion ; # :unit "km2" ; # :unit "ha" ; # :conversion "1 * km2 = 100 * ha " . ######################################################### # EQUIVALENT PROPERTIES urbanaudit:population_on_the_1st_of_january_total owl:equivalentDataProperty un:population . urbanaudit:population_on_the_1st_of_january_total rdfs:subPropertyOf un:population . un:population rdfs:subPropertyOf urbanaudit:population_on_the_1st_of_january_total . urbanaudit:population_on_the_1st_of_january_total :linearCorrelation [ :with un:population; :correlation 0.796564629020915; :slope 1.00068248759896; :completeObservations 1224 ] . urbanaudit:population_on_the_1st_of_january_female owl:equivalentDataProperty un:population_female . urbanaudit:population_on_the_1st_of_january_female rdfs:subPropertyOf un:population_female . un:population_female rdfs:subPropertyOf urbanaudit:population_on_the_1st_of_january_female . urbanaudit:population_on_the_1st_of_january_female :linearCorrelation [ :with un:population_female; :correlation 0.850042867161507; :slope 1.00085611949463; :completeObservations 922 ] . urbanaudit:population_on_the_1st_of_january_male owl:equivalentDataProperty un:population_male . urbanaudit:population_on_the_1st_of_january_male rdfs:subPropertyOf un:population_male . un:population_male rdfs:subPropertyOf urbanaudit:population_on_the_1st_of_january_male . urbanaudit:population_on_the_1st_of_january_male :linearCorrelation [ :with un:population_male; :correlation 0.847626932511574; :slope 1.00108289931947; :completeObservations 922 ] . urbanaudit:economically_active_population_20.64_total owl:equivalentDataProperty un:population_male . urbanaudit:economically_active_population_20.64_total rdfs:subPropertyOf un:population_male . un:population_male rdfs:subPropertyOf urbanaudit:economically_active_population_20.64_total . urbanaudit:economically_active_population_20.64_total :linearCorrelation [ :with un:population_male; :correlation 0.821425226276912; :slope 1.00264653944479; :completeObservations 203 ] . ######################################################### # LINEAR DEPENDENCIES [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_total * 0.529850292308663 + -620.814976140391"; :correlation 0.830277533937908; :completeObservations 1175 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_total * 0.475489058108837 + 1322.78905268419"; :correlation 0.822582960398792; :completeObservations 1175 ] . [ a :Constraint ; :involves urbanaudit:households_with_children_aged_0_to_under_18, un:population; :constraint "un:population = urbanaudit:households_with_children_aged_0_to_under_18 * 9.61479964297508 + -11803.3100319467"; :correlation 0.718623527737744; :completeObservations 476 ] . [ a :Constraint ; :involves urbanaudit:households_with_children_aged_0_to_under_18, un:population_female; :constraint "un:population_female = urbanaudit:households_with_children_aged_0_to_under_18 * 5.09596475354527 + -6258.70101681065"; :correlation 0.761059183815227; :completeObservations 446 ] . [ a :Constraint ; :involves urbanaudit:households_with_children_aged_0_to_under_18, un:population_male; :constraint "un:population_male = urbanaudit:households_with_children_aged_0_to_under_18 * 4.56754838518097 + -1847.24443449195"; :correlation 0.767005116155211; :completeObservations 446 ] . [ a :Constraint ; :involves urbanaudit:nationals, un:population; :constraint "un:population = urbanaudit:nationals * 1.17333461314928 + -13880.9701791928"; :correlation 0.75173158900669; :completeObservations 732 ] . [ a :Constraint ; :involves urbanaudit:nationals, un:population_female; :constraint "un:population_female = urbanaudit:nationals * 0.619317243313119 + -8318.74781812491"; :correlation 0.786366926169655; :completeObservations 702 ] . [ a :Constraint ; :involves urbanaudit:nationals, un:population_male; :constraint "un:population_male = urbanaudit:nationals * 0.566984266993991 + -6350.01021397604"; :correlation 0.776035020806512; :completeObservations 702 ] . [ a :Constraint ; :involves urbanaudit:no_live_births_per_year, un:population; :constraint "un:population = urbanaudit:no_live_births_per_year * 93.5861467860397 + 21515.3683175835"; :correlation 0.72201341655495; :completeObservations 800 ] . [ a :Constraint ; :involves urbanaudit:no_live_births_per_year, un:population_female; :constraint "un:population_female = urbanaudit:no_live_births_per_year * 50.2724869857385 + 9395.28660636881"; :correlation 0.744119229644408; :completeObservations 781 ] . [ a :Constraint ; :involves urbanaudit:no_live_births_per_year, un:population_male; :constraint "un:population_male = urbanaudit:no_live_births_per_year * 44.6530499928394 + 10327.5886665335"; :correlation 0.757554267382666; :completeObservations 781 ] . [ a :Constraint ; :involves urbanaudit:population_living_in_private_households_excluding_institutional_households, un:population; :constraint "un:population = urbanaudit:population_living_in_private_households_excluding_institutional_households * 1.01961491524242 + -1224.11891162383"; :correlation 0.801391201315615; :completeObservations 443 ] . [ a :Constraint ; :involves urbanaudit:population_living_in_private_households_excluding_institutional_households, un:population_female; :constraint "un:population_female = urbanaudit:population_living_in_private_households_excluding_institutional_households * 0.543254830200446 + -2725.19024179448"; :correlation 0.869486666827259; :completeObservations 408 ] . [ a :Constraint ; :involves urbanaudit:population_living_in_private_households_excluding_institutional_households, un:population_male; :constraint "un:population_male = urbanaudit:population_living_in_private_households_excluding_institutional_households * 0.491079253060939 + 141.587434446646"; :correlation 0.857545482481992; :completeObservations 408 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_0.4_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_0.4_years_female * 21.8625423326429 + 6029.69985656166"; :correlation 0.708172865257846; :completeObservations 595 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_0.4_years_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_0.4_years_female * 19.4693236607753 + 7795.41096749081"; :correlation 0.720322155753621; :completeObservations 595 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_0.4_years_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_0.4_years_total * 9.67949702435237 + 5400.33896186386"; :correlation 0.712498978410834; :completeObservations 1014 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_25.34_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_25.34_years_female * 6.47857667749738 + 11044.4823291947"; :correlation 0.761898259160501; :completeObservations 568 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_25.34_years_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_25.34_years_female * 5.982766460808 + 9651.00483529506"; :correlation 0.759007900936846; :completeObservations 568 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_25.34_years_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_25.34_years_male * 6.49635809442049 + 10005.1656563738"; :correlation 0.748574990690738; :completeObservations 573 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_25.34_years_male, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_25.34_years_male * 6.10694528173354 + 6281.36478572671"; :correlation 0.75626837104879; :completeObservations 573 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_25.34_years_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_25.34_years_total * 3.18434806619026 + 10210.8702880218"; :correlation 0.736269770305471; :completeObservations 698 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_25.34_years_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_25.34_years_total * 2.91965101233244 + 9403.60420366384"; :correlation 0.746229939631663; :completeObservations 698 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_female, un:population; :constraint "un:population = urbanaudit:population_on_the_1st_of_january_35.44_years_female * 12.7715011151687 + 10365.3094727393"; :correlation 0.705635934902853; :completeObservations 617 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_35.44_years_female * 6.78402109175327 + 4864.20942708349"; :correlation 0.766056560631838; :completeObservations 568 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_35.44_years_female * 6.2227136041855 + 4536.10217968391"; :correlation 0.761066898592203; :completeObservations 568 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_male, un:population; :constraint "un:population = urbanaudit:population_on_the_1st_of_january_35.44_years_male * 12.4025639152175 + 17983.4697747726"; :correlation 0.707147853996538; :completeObservations 621 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_35.44_years_male * 6.60587502335077 + 8904.0917663052"; :correlation 0.757248023940074; :completeObservations 572 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_male, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_35.44_years_male * 6.09428643223758 + 7175.90736612104"; :correlation 0.768851074003196; :completeObservations 572 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_total, un:population; :constraint "un:population = urbanaudit:population_on_the_1st_of_january_35.44_years_total * 6.37585304384903 + 10570.4114465428"; :correlation 0.705627769721893; :completeObservations 752 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_35.44_years_total * 3.42020914480255 + 3718.13865730077"; :correlation 0.749576463077885; :completeObservations 703 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_35.44_years_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_35.44_years_total * 3.11236704573729 + 4086.05306809063"; :correlation 0.755123508340858; :completeObservations 703 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_45.54_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_45.54_years_female * 7.37643553454113 + -1920.32935175347"; :correlation 0.760510769093997; :completeObservations 572 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_45.54_years_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_45.54_years_female * 6.70629848857842 + -670.698225406731"; :correlation 0.744113843284111; :completeObservations 572 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_45.54_years_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_45.54_years_male * 8.11373466506171 + -3717.38932588633"; :correlation 0.750298558638378; :completeObservations 572 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_45.54_years_male, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_45.54_years_male * 7.27191167936613 + -1399.05309780694"; :correlation 0.757051218209528; :completeObservations 572 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_45.54_years_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_45.54_years_total * 3.84664718873781 + -2232.39459714248"; :correlation 0.742747714923409; :completeObservations 703 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_45.54_years_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_45.54_years_total * 3.47397178736695 + -367.475765751072"; :correlation 0.736549227695693; :completeObservations 703 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_55.64_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_55.64_years_female * 8.52857542253757 + -1533.86645806566"; :correlation 0.714763930140537; :completeObservations 593 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_55.64_years_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_55.64_years_male * 9.78503827535402 + -2644.26500153993"; :correlation 0.719857787636217; :completeObservations 593 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_55.64_years_male, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_55.64_years_male * 8.96309315624279 + -1874.20107537009"; :correlation 0.711930082057931; :completeObservations 593 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_55.64_years_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_55.64_years_total * 4.48430626695305 + 340.617421230667"; :correlation 0.712262908365177; :completeObservations 1024 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_female, un:population; :constraint "un:population = urbanaudit:population_on_the_1st_of_january_female * 1.9007948926729 + 2804.77221492811"; :correlation 0.780515203250298; :completeObservations 971 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_female * 0.905133814519097 + 2635.6208099724"; :correlation 0.810483163509902; :completeObservations 922 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_male, un:population; :constraint "un:population = urbanaudit:population_on_the_1st_of_january_male * 2.11529970568788 + -732.427126899165"; :correlation 0.782286200933705; :completeObservations 971 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_male * 1.12329928847274 + -1415.89253185767"; :correlation 0.82384682789154; :completeObservations 922 ] . [ a :Constraint ; :involves urbanaudit:private_households_excluding_institutional_households, un:population; :constraint "un:population = urbanaudit:private_households_excluding_institutional_households * 2.36372385895546 + 3357.11232772567"; :correlation 0.707528393911007; :completeObservations 699 ] . [ a :Constraint ; :involves urbanaudit:private_households_excluding_institutional_households, un:population_female; :constraint "un:population_female = urbanaudit:private_households_excluding_institutional_households * 1.30008055333117 + -2591.76256249637"; :correlation 0.772825007778292; :completeObservations 650 ] . [ a :Constraint ; :involves urbanaudit:private_households_excluding_institutional_households, un:population_male; :constraint "un:population_male = urbanaudit:private_households_excluding_institutional_households * 1.16889700531632 + 246.521559907303"; :correlation 0.764610220829376; :completeObservations 650 ] . [ a :Constraint ; :involves urbanaudit:total_deaths_per_year, un:population; :constraint "un:population = urbanaudit:total_deaths_per_year * 99.4889406622212 + 9305.54980915815"; :correlation 0.711802882322025; :completeObservations 778 ] . [ a :Constraint ; :involves urbanaudit:total_deaths_per_year, un:population_female; :constraint "un:population_female = urbanaudit:total_deaths_per_year * 52.7529023348209 + 3692.3989786139"; :correlation 0.74700626303213; :completeObservations 759 ] . [ a :Constraint ; :involves urbanaudit:total_deaths_per_year, un:population_male; :constraint "un:population_male = urbanaudit:total_deaths_per_year * 47.7372522309857 + 3999.36932287205"; :correlation 0.723689155803492; :completeObservations 759 ] . [ a :Constraint ; :involves urbanaudit:total_deaths_per_year_female, un:population_female; :constraint "un:population_female = urbanaudit:total_deaths_per_year_female * 103.995900789447 + 6185.85788782159"; :correlation 0.71213559845669; :completeObservations 492 ] . [ a :Constraint ; :involves urbanaudit:total_deaths_per_year_male, un:population_female; :constraint "un:population_female = urbanaudit:total_deaths_per_year_male * 110.0733061203 + 1690.46442329068"; :correlation 0.712676086768247; :completeObservations 492 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_female, un:population; :constraint "un:population = urbanaudit:economically_active_population_female * 4.11377831461775 + 13035.8516407443"; :correlation 0.718296283537531; :completeObservations 509 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_female, un:population_female; :constraint "un:population_female = urbanaudit:economically_active_population_female * 2.21254413946186 + 4964.52308751641"; :correlation 0.806741335905083; :completeObservations 460 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_female, un:population_male; :constraint "un:population_male = urbanaudit:economically_active_population_female * 1.98411347717832 + 8936.94582431788"; :correlation 0.797054221922389; :completeObservations 460 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_male, un:population; :constraint "un:population = urbanaudit:economically_active_population_male * 3.65935847428861 + 12622.6615283015"; :correlation 0.730538127092733; :completeObservations 511 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_male, un:population_female; :constraint "un:population_female = urbanaudit:economically_active_population_male * 1.97967521427969 + 4497.22254618169"; :correlation 0.810370382977961; :completeObservations 462 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_male, un:population_male; :constraint "un:population_male = urbanaudit:economically_active_population_male * 1.78245344254688 + 5813.51127826252"; :correlation 0.820407791722762; :completeObservations 462 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_total, un:population; :constraint "un:population = urbanaudit:economically_active_population_total * 1.93791031963823 + 14462.7338823996"; :correlation 0.70041291372757; :completeObservations 603 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_total, un:population_female; :constraint "un:population_female = urbanaudit:economically_active_population_total * 1.03787947658004 + 5803.44029188413"; :correlation 0.770822072367549; :completeObservations 554 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_total, un:population_male; :constraint "un:population_male = urbanaudit:economically_active_population_total * 0.931721375683254 + 8678.40094742697"; :correlation 0.772068119597344; :completeObservations 554 ] . [ a :Constraint ; :involves urbanaudit:no_conventional_dwellings, un:population; :constraint "un:population = urbanaudit:no_conventional_dwellings * 2.22221383173049 + 9371.77770462927"; :correlation 0.700123593898656; :completeObservations 819 ] . [ a :Constraint ; :involves urbanaudit:no_conventional_dwellings, un:population_female; :constraint "un:population_female = urbanaudit:no_conventional_dwellings * 1.21285038106909 + 1462.11836354637"; :correlation 0.744077654567619; :completeObservations 780 ] . [ a :Constraint ; :involves urbanaudit:no_conventional_dwellings, un:population_male; :constraint "un:population_male = urbanaudit:no_conventional_dwellings * 1.07413079472841 + 4569.50699361996"; :correlation 0.737751620692527; :completeObservations 780 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_female, un:population; :constraint "un:population = urbanaudit:economically_active_population_20.64_female * 4.1007076037088 + 13196.2663861991"; :correlation 0.728713054598707; :completeObservations 225 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_female, un:population_female; :constraint "un:population_female = urbanaudit:economically_active_population_20.64_female * 2.26220036288931 + 2519.71053477638"; :correlation 0.8281819436413; :completeObservations 199 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_female, un:population_male; :constraint "un:population_male = urbanaudit:economically_active_population_20.64_female * 2.01068402574899 + 7845.99227616584"; :correlation 0.812739885810893; :completeObservations 199 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_male, un:population; :constraint "un:population = urbanaudit:economically_active_population_20.64_male * 3.83012724313461 + 5093.23670515159"; :correlation 0.754117013367576; :completeObservations 225 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_male, un:population_female; :constraint "un:population_female = urbanaudit:economically_active_population_20.64_male * 2.09520259230557 + -1342.00309025101"; :correlation 0.838794061579179; :completeObservations 199 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_male, un:population_male; :constraint "un:population_male = urbanaudit:economically_active_population_20.64_male * 1.85415085449962 + 3776.94409563687"; :correlation 0.847740113866049; :completeObservations 199 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_total, un:population; :constraint "un:population = urbanaudit:economically_active_population_20.64_total * 1.95500953656279 + 12443.8700109751"; :correlation 0.73452657903744; :completeObservations 229 ] . [ a :Constraint ; :involves urbanaudit:economically_active_population_20.64_total, un:population_female; :constraint "un:population_female = urbanaudit:economically_active_population_20.64_total * 1.08809877936478 + 593.764959740898"; :correlation 0.824451093072062; :completeObservations 203 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_female, un:population; :constraint "un:population = urbanaudit:persons_employed_20.64_female * 4.56918079758818 + 13904.0887721157"; :correlation 0.705326944862766; :completeObservations 302 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_female, un:population_female; :constraint "un:population_female = urbanaudit:persons_employed_20.64_female * 2.47645876801486 + 4833.69266855305"; :correlation 0.767328536110401; :completeObservations 276 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_female, un:population_male; :constraint "un:population_male = urbanaudit:persons_employed_20.64_female * 2.28146377033221 + 6605.46294637814"; :correlation 0.757626196181572; :completeObservations 276 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_male, un:population; :constraint "un:population = urbanaudit:persons_employed_20.64_male * 4.29393634208469 + 6634.46405718294"; :correlation 0.723390740303634; :completeObservations 302 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_male, un:population_female; :constraint "un:population_female = urbanaudit:persons_employed_20.64_male * 2.39028089407798 + -2445.47274381437"; :correlation 0.773145015765; :completeObservations 276 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_male, un:population_male; :constraint "un:population_male = urbanaudit:persons_employed_20.64_male * 2.13164232965695 + 2260.99706341385"; :correlation 0.785114592479657; :completeObservations 276 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_total, un:population; :constraint "un:population = urbanaudit:persons_employed_20.64_total * 2.21679547685988 + 9940.48953898864"; :correlation 0.711498234657593; :completeObservations 293 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_total, un:population_female; :constraint "un:population_female = urbanaudit:persons_employed_20.64_total * 1.24685353733448 + -1414.31770219922"; :correlation 0.76945397890339; :completeObservations 267 ] . [ a :Constraint ; :involves urbanaudit:persons_employed_20.64_total, un:population_male; :constraint "un:population_male = urbanaudit:persons_employed_20.64_total * 1.11215571990156 + 3590.73820695378"; :correlation 0.771200433241214; :completeObservations 267 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_10.14_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_10.14_years_female * 25.9885388322858 + -7530.3656347867"; :correlation 0.735547203076375; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_10.14_years_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_10.14_years_female * 23.893735815708 + -6261.78555162044"; :correlation 0.750731138211757; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_10.14_years_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_10.14_years_male * 24.5718577181354 + -7478.45899841641"; :correlation 0.737432994888132; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_10.14_years_male, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_10.14_years_male * 22.7648594212711 + -6934.73741940707"; :correlation 0.752793707816514; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_10.14_years_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_10.14_years_total * 12.6216115918896 + -7162.33962984556"; :correlation 0.737256502574428; :completeObservations 374 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_10.14_years_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_10.14_years_total * 11.6586855392998 + -6422.98683470197"; :correlation 0.752351889339888; :completeObservations 374 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_5.9_years_female, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_5.9_years_female * 24.8733593836552 + -4495.89500250212"; :correlation 0.738433231421799; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_5.9_years_female, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_5.9_years_female * 22.0245354300544 + -433.196424257451"; :correlation 0.755532010418384; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_5.9_years_male, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_5.9_years_male * 23.7464409844339 + -4921.1459998179"; :correlation 0.738972886253864; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_5.9_years_male, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_5.9_years_male * 21.0456160064132 + -836.818965092358"; :correlation 0.757809935539529; :completeObservations 369 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_5.9_years_total, un:population_female; :constraint "un:population_female = urbanaudit:population_on_the_1st_of_january_5.9_years_total * 12.1501832615569 + -4460.39265099255"; :correlation 0.738439938358034; :completeObservations 374 ] . [ a :Constraint ; :involves urbanaudit:population_on_the_1st_of_january_5.9_years_total, un:population_male; :constraint "un:population_male = urbanaudit:population_on_the_1st_of_january_5.9_years_total * 10.758852760166 + -488.948780888228"; :correlation 0.756345564104583; :completeObservations 374 ] . [ a :Constraint ; :involves urbanaudit:native.born, un:population; :constraint "un:population = urbanaudit:native.born * 1.23025129125286 + -14793.4195510294"; :correlation 0.734331797632843; :completeObservations 247 ] . [ a :Constraint ; :involves urbanaudit:native.born, un:population_female; :constraint "un:population_female = urbanaudit:native.born * 0.641315331188251 + -6076.8524763407"; :correlation 0.822658275409143; :completeObservations 221 ] . [ a :Constraint ; :involves urbanaudit:native.born, un:population_male; :constraint "un:population_male = urbanaudit:native.born * 0.595824231070299 + -4465.82251886295"; :correlation 0.799703814079095; :completeObservations 221 ] . #########################################################